We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ccadf commit d67d462Copy full SHA for d67d462
src/components/Sidebar/style.css
@@ -1,9 +1,14 @@
1
.sidebar-wrapper {
2
flex: 1;
3
- height: 100%;
4
- border-radius: 1rem;
5
- padding: 2rem;
+ margin: 2rem;
6
overflow: hidden;
+ border-radius: 1rem;
+ background: linear-gradient(
7
+ to bottom right,
8
+ var(--color-primary),
9
+ var(--color-secondary),
10
+ var(--color-tertiary)
11
+ );
12
}
13
14
.sidebar {
@@ -15,12 +20,12 @@
15
20
flex-direction: column;
16
21
gap: 1.5rem;
17
22
overflow-y: auto;
18
- background: linear-gradient(
19
- to bottom right,
- var(--color-primary),
- var(--color-secondary),
- var(--color-tertiary)
23
- );
+}
24
+
25
+.sidebar::-webkit-scrollbar {
26
+ width: 0.5rem;
27
+ height: 0.5rem;
28
+ background: transparent;
29
30
31
.sidebar-section {
0 commit comments