diff options
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; +} + |