Skip to content

Commit

Permalink
Merge pull request #6 from andreia/fix_button_group_style
Browse files Browse the repository at this point in the history
Add fix for button group
  • Loading branch information
andreia authored Dec 16, 2024
2 parents b933975 + 5a2c805 commit 6671bdb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion resources/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,19 @@
@apply bg-white dark:bg-gray-800 rounded-full ps-2 mr-2;
}

.fi-btn {
.fi-btn:not(.fi-btn-group .fi-btn) {
@apply rounded-full;
}

.fi-btn-group > .fi-btn:first-of-type {
@apply rounded-s-full;
}

.fi-btn-group > .fi-btn:last-of-type {
@apply rounded-e-full;
}

.fi-btn-group {
@apply rounded-full;
}

Expand Down

0 comments on commit 6671bdb

Please sign in to comment.