diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-01-14 16:40:02 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-01-14 16:40:02 -0500 |
commit | a37e3935e755f9a7f1a81e51d9fee696cac681c2 (patch) | |
tree | c0ca026a1984b4c30eb35320fc303511d01f4494 /extension/src/index.css | |
parent | a8da6090454a1b1b9ca1d977138430f768ec44f1 (diff) | |
download | bookmarks-home-a37e3935e755f9a7f1a81e51d9fee696cac681c2.tar.gz bookmarks-home-a37e3935e755f9a7f1a81e51d9fee696cac681c2.tar.bz2 bookmarks-home-a37e3935e755f9a7f1a81e51d9fee696cac681c2.zip |
rewrite icon system to cache better
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index 72f29db..48710d0 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -34,6 +34,8 @@ body { transform: translateX(100%); transition: all 0.2s ease-in-out; + + overflow: auto; } #settings-menu.open { @@ -344,6 +346,18 @@ button:hover:not(.default) { } } +.icon-selector { + display: flex; + flex-direction: row; + flex-wrap: wrap; + gap: 15px; +} + +.icon-selector .icon-box { + width: 75px; + margin: 15px; +} + |