diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-12-03 13:46:21 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-12-03 13:46:21 -0500 |
commit | 37f9cb4a0dbb83aad1aaae0d88fd488edc5e56ac (patch) | |
tree | 70a6af461bb92721ce93ef073ca9839dceb57905 /extension/src/index.css | |
parent | 8ad470aaf5434005db4c59106dcbcf4cbc8cf49b (diff) | |
download | bookmarks-home-37f9cb4a0dbb83aad1aaae0d88fd488edc5e56ac.tar.gz bookmarks-home-37f9cb4a0dbb83aad1aaae0d88fd488edc5e56ac.tar.bz2 bookmarks-home-37f9cb4a0dbb83aad1aaae0d88fd488edc5e56ac.zip |
DRAG AND DROP WORKS
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index a14e0d6..f240f82 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -120,6 +120,7 @@ body > .folderBody { .icon-box > img { width: 100%; border-radius: 10px; + pointer-events: none; } .icon-box > svg { @@ -257,13 +258,19 @@ a { } > svg { - background-color: #000000ba; - width: 65px; - height: 65px; + background-color: #FFF; + width: 50px; + height: 50px; border-radius: 10px; padding: 10px; margin-bottom: 14px; + fill: black; } } +.enabled { + background-color: white; + fill: black; +} + |