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 cb0bd7a commit 7036414Copy full SHA for 7036414
3 files changed
app/styles/_manifest.scss
@@ -13,6 +13,7 @@
13
@import "breadcrumbs";
14
@import "nav";
15
@import "icons";
16
+@import "scrollbar";
17
18
// Last
19
@import "general";
app/styles/_nav.scss
@@ -11,7 +11,7 @@ nav {
11
// border-right: 1px solid #ccc;
12
height: 100vh;
- width: 250px;
+ width: 300px;
overflow-y: auto;
position: fixed;
@@ -49,13 +49,3 @@ nav {
49
display: block;
50
}
51
52
-
53
54
-// Nicer sidebar scrollbars
55
-::-webkit-scrollbar {
56
- width: 6px;
57
-}
58
-::-webkit-scrollbar-thumb {
59
- background: #ddd;
60
- -webkit-border-radius: 3px;
61
app/styles/_scrollbar.scss
@@ -0,0 +1,9 @@
1
+// Scrollbar
2
+::-webkit-scrollbar {
3
+ width: 6px;
4
+ height: 6px;
5
+}
6
+::-webkit-scrollbar-thumb {
7
+ background: #ccc;
8
+ -webkit-border-radius: 3px;
9
0 commit comments