aboutsummaryrefslogtreecommitdiff
path: root/styles/editor.css
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-06-19 14:30:31 +0200
committerlonkaars <loek@pipeframe.xyz>2021-06-19 14:30:31 +0200
commit6f5bfba41aff2e867eb77e1bbab8c746865c16f5 (patch)
treebb63c3d9976c2b05f1a57b4f4ca4877141e96a57 /styles/editor.css
parent2fc2a8c76722f801c29e8a314f8de22ae9572a04 (diff)
settings section
Diffstat (limited to 'styles/editor.css')
-rw-r--r--styles/editor.css22
1 files changed, 21 insertions, 1 deletions
diff --git a/styles/editor.css b/styles/editor.css
index 210ffbc..296a6b7 100644
--- a/styles/editor.css
+++ b/styles/editor.css
@@ -42,12 +42,32 @@
}
.settings .inner .section > * { margin-bottom: 8px; }
-.settings .inner .scroll { top: 32px; }
+.settings .inner .scroll {
+ top: 32px;
+ overflow-y: scroll;
+ overflow-x: hidden;
+ border-radius: 4px;
+ margin-right: -8px;
+}
.settings .inner button {
width: 100%;
background-color: var(--piss);
color: var(--bg);
}
+.settings .inner .section .settings {
+ display: grid;
+ grid-auto-flow: column;
+}
+
+.settings ::-webkit-scrollbar-track,
+.settings ::-webkit-scrollbar-track-piece,
+.settings ::-webkit-scrollbar {
+ background-color: var(--c400);
+}
+
+.settings ::-webkit-scrollbar-thumb {
+ background-color: var(--c700);
+}
.appGrid .viewer {
grid-column: 2;