diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-01-18 15:16:12 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-01-18 15:16:12 -0500 |
commit | 279e8c7ea4f7e48ee68844e4347a67e5875faaa2 (patch) | |
tree | 518b4c7dd2c5b1c626645ba17423e788c0ef426a /extension/src/index.css | |
parent | ef013458cc29c6948603e32a001019fe6c52b743 (diff) | |
download | bookmarks-home-279e8c7ea4f7e48ee68844e4347a67e5875faaa2.tar.gz bookmarks-home-279e8c7ea4f7e48ee68844e4347a67e5875faaa2.tar.bz2 bookmarks-home-279e8c7ea4f7e48ee68844e4347a67e5875faaa2.zip |
Icon picker working (barely, refresh after)
Diffstat (limited to '')
-rw-r--r-- | extension/src/index.css | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index 48710d0..b88c8c0 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -59,9 +59,9 @@ body { margin: 5px; padding: 10px; flex-wrap: wrap; - /*position: fixed;*/ + /*position: absolute;*/ /*bottom: 0;*/ - animation: slideDown 0.2s ease; + animation: slideDown 0.1s ease; overflow: hidden; white-space: nowrap; } @@ -358,6 +358,21 @@ button:hover:not(.default) { margin: 15px; } +.selected { + position: absolute; + top: 0; + left: 0; + background-color: #000000c4; + display: flex +; + right: 0; + bottom: 0; + align-content: center; + justify-content: center; + align-items: center; + /* fill: black; */ +} - - +.icon-option { + position: relative; +} |