Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(avatar): remove unecessary h-full class in Avatar fallbackBase #3240

6 changes: 6 additions & 0 deletions .changeset/curly-jobs-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@skeletonlabs/skeleton-svelte": minor
---

bugfix(avatar): removed unecessary h-full class from fallbackbase.

2 changes: 1 addition & 1 deletion packages/skeleton-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# @skeletonlabs/skeleton-react

## 1.0.0-next.15
### Minor Changes

### Minor Changes

- feat: Navigation - manually handle `selected` state of NavTile ([#3228](https://github.com/skeletonlabs/skeleton/pull/3228))

Expand Down
5 changes: 1 addition & 4 deletions packages/skeleton-svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
# @skeletonlabs/skeleton-svelte

## 1.0.0-next.20
### Minor Changes

### Minor Changes

- feat: Navigation - manually handle `selected` state of NavTile ([#3228](https://github.com/skeletonlabs/skeleton/pull/3228))


### Patch Changes


- chore: Remove redundant null checks for triggers ([#3226](https://github.com/skeletonlabs/skeleton/pull/3226))


- bugfix: only render button wrapping around `trigger` if the snippet was provided ([#3223](https://github.com/skeletonlabs/skeleton/pull/3223))

## 1.0.0-next.19
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
imageClasses = '',
style = '',
// Fallback
fallbackBase = 'w-full h-full flex justify-center items-center',
fallbackBase = 'w-full flex justify-center items-center',
fallbackClasses = '',
// Snippets
children
Expand Down