Skip to content

Commit

Permalink
docs: prevent shrinking theme customizer circles (#914)
Browse files Browse the repository at this point in the history
* fix: prevent shrinking theme customizer circles

* use `shrink-0` instead of deprecated `flex-shrink-0`
  • Loading branch information
fatihsolhan authored Nov 19, 2024
1 parent 2d5ad5b commit 3ddd70d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/www/.vitepress/theme/components/ThemeCustomizer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const { isDark } = useData()
@click="setTheme(color)"
>
<span
class="h-5 w-5 rounded-full flex items-center justify-center"
class="h-5 w-5 rounded-full flex items-center justify-center shrink-0"
:style="{ backgroundColor: colors[color][7].rgb }"
>
<RadixIconsCheck
Expand Down

0 comments on commit 3ddd70d

Please sign in to comment.