chore: fix toolbar scrollbar on mac and move toolbar to top

This commit is contained in:
Aman Harwara
2023-10-24 16:06:27 +05:30
parent fd5089d92c
commit 26ad1832e8
4 changed files with 20 additions and 30 deletions

View File

@@ -16,7 +16,9 @@
background-clip: padding-box;
-webkit-border-radius: 10px;
background-color: var(--sn-stylekit-scrollbar-thumb-color);
-webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
-webkit-box-shadow:
inset -1px -1px 0px rgba(0, 0, 0, 0.05),
inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-button {
@@ -29,5 +31,17 @@
background-color: transparent;
}
.super-toolbar {
::-webkit-scrollbar {
height: 0;
}
@media screen and (min-width: 768px) {
::-webkit-scrollbar {
height: 13px;
}
}
}
scrollbar-width: thin;
}