🐛 fix(bottom-navigation): When item in active state, it sits lower than the non-active items by 2 pixels (#1355)

* 🐛 fix(bottom-navigation): Bottom navigation respects the iOS safe-area

* 💄 style: Restore syntax

* 🐛 fix(bottom-navigation): When item in active state, it sits lower than the non-active items by 2 pixels

* 🐛 restore: Moved some old code
This commit is contained in:
Bastiaan Verhaar 2022-11-16 08:21:48 +01:00 committed by GitHub
parent 5cce2f8a44
commit a497115f15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
&>* {
@apply border-current;
&:not(.active) {
@apply pt-0.5;
}
/* active */
&:where(.active) {
@apply bg-base-100 border-t-2;