fix(ui): regression (gap between text and icon on buttons)

This commit is contained in:
upsiflu 2025-01-20 18:12:54 +02:00
parent b7ea9c4ff0
commit 2202d8431f
1 changed files with 4 additions and 3 deletions

View File

@ -223,7 +223,7 @@ onMounted(() => {
// Icon // Icon
i.bi { > i.bi {
font-size: 18px; font-size: 18px;
margin: -2px 0; margin: -2px 0;
&.large { &.large {
@ -231,14 +231,15 @@ onMounted(() => {
margin: -8px 0; margin: -8px 0;
} }
} }
&.is-icon-only i.bi { &.is-icon-only i.bi {
margin: -6px; margin: -6px;
&.large { &.large {
margin: -8px; margin: -8px;
} }
} }
&:has(>i){
gap: 10px;
}
} }
} }