diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-12-03 00:02:21 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-12-03 00:02:21 -0500 |
commit | 8ad470aaf5434005db4c59106dcbcf4cbc8cf49b (patch) | |
tree | e7df44904ce00bed8d7d45e8d1c22e7253eed6b1 /extension/src/index.css | |
parent | afa44751b7f9d39c4842d5a91a9e3ce28d74bfce (diff) | |
download | bookmarks-home-8ad470aaf5434005db4c59106dcbcf4cbc8cf49b.tar.gz bookmarks-home-8ad470aaf5434005db4c59106dcbcf4cbc8cf49b.tar.bz2 bookmarks-home-8ad470aaf5434005db4c59106dcbcf4cbc8cf49b.zip |
Push drag and drop code so far
Diffstat (limited to 'extension/src/index.css')
-rw-r--r-- | extension/src/index.css | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index a85aeaf..a14e0d6 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -191,7 +191,7 @@ a { /* Drop targets */ .drop-targets { - pointer-events: none; + /*pointer-events: none;*/ position: absolute; top: 0; /* bottom: 0; */ @@ -215,7 +215,7 @@ a { align-items: center; > div { - background-color: aqua; + background-color: white; height: 50%; width: 4px; } @@ -231,7 +231,7 @@ a { align-items: center; > div { - background-color: aqua; + background-color: white; width: 4px; height: 50%; } @@ -248,13 +248,22 @@ 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: #000000ba; + width: 65px; + height: 65px; + border-radius: 10px; + padding: 10px; + margin-bottom: 14px; + } } |