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 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); +} + |