diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-11-03 14:23:06 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-11-03 14:23:06 -0500 |
commit | 39c37d3a7993cf1b726ee8ab80ac286f453c90b2 (patch) | |
tree | 5342796308125d3d39aa460660d78868a3d16e51 /extension/src/index.css | |
parent | 4144eae45e68fcee46d7acb5a59f7af0f596890c (diff) | |
download | bookmarks-home-39c37d3a7993cf1b726ee8ab80ac286f453c90b2.tar.gz bookmarks-home-39c37d3a7993cf1b726ee8ab80ac286f453c90b2.tar.bz2 bookmarks-home-39c37d3a7993cf1b726ee8ab80ac286f453c90b2.zip |
Settings sidebar works now
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 79b8adb..a0d71b1 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -23,9 +23,6 @@ body { padding: 10px; right: 0; animation: slideIn 0.3s ease-in-out; -} - -#settings-menu form { display: flex; flex-direction: column; place-items: flex-start; @@ -49,7 +46,6 @@ body { border-style: solid; border-width: 1px; border-color: #393939; - padding: 2px; margin: 5px; padding: 10px; } @@ -67,6 +63,11 @@ body { user-select: none } +body > .folder { + margin: 0; + border-style: none; +} + /* Bookmark */ .bookmark { display: flex; @@ -97,4 +98,19 @@ a { text-decoration: none; } +#settings-close, #settings-button { + border-style: none; + background: none; + color: white; + padding: 5px; + margin: 5px; + position: absolute; + top: 0; + right: 0; +} + +#settings-close:hover, #settings-button:hover { + background-color: rgba(0, 0, 0, 0.3); +} + |