diff options
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index a85aeaf..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 { @@ -191,7 +192,7 @@ a { /* Drop targets */ .drop-targets { - pointer-events: none; + /*pointer-events: none;*/ position: absolute; top: 0; /* bottom: 0; */ @@ -215,7 +216,7 @@ a { align-items: center; > div { - background-color: aqua; + background-color: white; height: 50%; width: 4px; } @@ -231,7 +232,7 @@ a { align-items: center; > div { - background-color: aqua; + background-color: white; width: 4px; height: 50%; } @@ -248,13 +249,28 @@ a { align-items: center; > span { - color: aqua; + /*color: aqua;*/ font-size: 100px; /* background-color: aqua; */ /* aspect-ratio: 1 / 1; */ /* height: 100px; */ font-family: monospace; } + + > svg { + background-color: #FFF; + width: 50px; + height: 50px; + border-radius: 10px; + padding: 10px; + margin-bottom: 14px; + fill: black; + } +} + +.enabled { + background-color: white; + fill: black; } |