fix(FN-1009): add gap spacing to btn-sm for icon-text alignment

- Add CSS gap property to .btn-sm class for proper icon-text alignment
- Ensures icon and text elements within small buttons have consistent spacing
This commit is contained in:
gsxdsm
2026-04-05 20:56:22 -07:00
parent 2719196703
commit 7ca715a366

View File

@@ -746,6 +746,9 @@ body {
.btn-sm { .btn-sm {
padding: 4px 10px; padding: 4px 10px;
font-size: 12px; font-size: 12px;
display: inline-flex;
align-items: center;
gap: 4px;
} }
/* === Button Modifiers (BEM style) === */ /* === Button Modifiers (BEM style) === */