diff options
Diffstat (limited to 'themes/danix-xyz-hacker/assets/css')
| -rw-r--r-- | themes/danix-xyz-hacker/assets/css/main.css | 25 | ||||
| -rw-r--r-- | themes/danix-xyz-hacker/assets/css/main.min.css | 31 |
2 files changed, 45 insertions, 11 deletions
diff --git a/themes/danix-xyz-hacker/assets/css/main.css b/themes/danix-xyz-hacker/assets/css/main.css index 99a278d..0fac3be 100644 --- a/themes/danix-xyz-hacker/assets/css/main.css +++ b/themes/danix-xyz-hacker/assets/css/main.css @@ -273,14 +273,27 @@ html.theme-light { /* Icon button (for icons without text) */ .btn-icon { - @apply p-2 rounded-full inline-flex items-center justify-center; - width: 40px; - height: 40px; + @apply rounded-full inline-flex items-center justify-center; + width: auto; + height: auto; + padding: 0.5rem; } - .btn-icon svg { - width: 20px; - height: 20px; + .btn-icon svg, + .btn-icon i { + width: auto !important; + height: auto !important; + } + + /* Force Feather icons to match size */ + .btn-icon [data-feather] { + width: 50px !important; + height: 50px !important; + } + + .btn-icon [data-feather] svg { + width: 50px !important; + height: 50px !important; } /* Badge base style */ diff --git a/themes/danix-xyz-hacker/assets/css/main.min.css b/themes/danix-xyz-hacker/assets/css/main.min.css index d2db799..7a38ef4 100644 --- a/themes/danix-xyz-hacker/assets/css/main.min.css +++ b/themes/danix-xyz-hacker/assets/css/main.min.css @@ -1414,14 +1414,27 @@ button, align-items: center; justify-content: center; border-radius: 9999px; + width: auto; + height: auto; padding: 0.5rem; - width: 40px; - height: 40px; } -.btn-icon svg { - width: 20px; - height: 20px; +.btn-icon svg, + .btn-icon i { + width: auto !important; + height: auto !important; +} + +/* Force Feather icons to match size */ + +.btn-icon [data-feather] { + width: 50px !important; + height: 50px !important; +} + +.btn-icon [data-feather] svg { + width: 50px !important; + height: 50px !important; } /* Badge base style */ @@ -1818,6 +1831,10 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg { height: 1.25rem; } +.h-\[50px\] { + height: 50px; +} + .h-auto { height: auto; } @@ -1850,6 +1867,10 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg { width: 1.25rem; } +.w-\[50px\] { + width: 50px; +} + .w-full { width: 100%; } |
