diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-18 15:14:29 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-18 15:14:29 +0200 |
| commit | e6c8bf78ce3eafaa2a2643be175c39cd57de3d53 (patch) | |
| tree | b136924c9fea929ee8efed0883cd2f3529f112a4 /themes/danix-xyz-hacker/assets/css/main.css | |
| parent | 8e475628bc476c166e3ab864c34e51fc6ee994e4 (diff) | |
| download | danixxyz-e6c8bf78ce3eafaa2a2643be175c39cd57de3d53.tar.gz danixxyz-e6c8bf78ce3eafaa2a2643be175c39cd57de3d53.zip | |
style: resize social share icons to 50px and tighten grid gap
Diffstat (limited to 'themes/danix-xyz-hacker/assets/css/main.css')
| -rw-r--r-- | themes/danix-xyz-hacker/assets/css/main.css | 25 |
1 files changed, 19 insertions, 6 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 */ |
