From 5a2c805e5a0f09987518eee224a92b30c3d84c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9ia=20Bohner?= Date: Sun, 15 Dec 2024 21:37:23 -0300 Subject: [PATCH] Add fix for button group --- resources/css/theme.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/resources/css/theme.css b/resources/css/theme.css index 26082bc..cb4810c 100644 --- a/resources/css/theme.css +++ b/resources/css/theme.css @@ -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; }