Skip to content

Commit 3f31eaf

Browse files
Merge pull request #243 from souravdutt/ui-scrollbar-fix
✔️fixed unwanted scrollbars in UI
2 parents 09c7b2b + fe8d6d9 commit 3f31eaf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ui/src/global.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ html {
1515
}
1616

1717
.main-grid {
18-
18+
1919
}
2020
.sidebar-wrapper {
2121
@apply pt-10 bg-base-200;
2222
position: relative;
2323
width: 100%;
24-
24+
2525
}
2626
aside {
2727
@apply h-screen;
2828
position: fixed;
29-
overflow-y: scroll;
29+
overflow-y: auto;
3030
width: 30%;
3131
}
3232

@@ -43,7 +43,7 @@ aside > ui > li {
4343
}
4444

4545
td {
46-
overflow: scroll;
46+
overflow: auto;
4747
}
4848

4949
h2[id] {
@@ -133,4 +133,4 @@ h2[id] {
133133
}
134134
.response-500,.response-501,.response-502,.response-503 {
135135
@apply bg-red-400 text-red-800;
136-
}
136+
}

0 commit comments

Comments
 (0)