ui: modified scrollbar style

This commit is contained in:
XPoet 2021-04-01 10:08:10 +08:00
parent 720122947b
commit 0f9c8607aa
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@
// scrollbar // scrollbar
// ==================================== // ====================================
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 5px; width: 6px;
height: 5px; height: 6px;
transition: all 0.2s ease; transition: all 0.2s ease;
} }
@ -47,7 +47,7 @@ html, body {
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 8px; width: 8px;
height: 6px; height: 8px;
} }
+keep-tablet() { +keep-tablet() {

View File

@ -71,7 +71,7 @@ $border-color = darken($background-color, 30%);
$selection-color = lighten($primary-color, 10%); $selection-color = lighten($primary-color, 10%);
$shadow-color = rgba(0, 0, 0, 0.2); $shadow-color = rgba(0, 0, 0, 0.2);
$shadow-hover-color = rgba(0, 0, 0, 0.28); $shadow-hover-color = rgba(0, 0, 0, 0.28);
$scrollbar-color = lighten($default-text-color, 5%); $scrollbar-color = lighten($default-text-color, 6%);
$scroll-bar-bg-color = darken($background-color, 10%); $scroll-bar-bg-color = darken($background-color, 10%);
$link-color = darken($default-text-color, 10%); $link-color = darken($default-text-color, 10%);
$copyright-info-color = #CC0033; $copyright-info-color = #CC0033;