Skip to content

Commit

Permalink
fix(_window scroll): fixed the style of scrollbar in navigator
Browse files Browse the repository at this point in the history
a different version was displayed in the browser, disrupting the system's style
  • Loading branch information
SouOWendel committed Mar 23, 2024
1 parent 2704395 commit a282732
Showing 1 changed file with 31 additions and 9 deletions.
40 changes: 31 additions & 9 deletions scss/global/_window.scss
@@ -1,16 +1,38 @@
.window-app {
font-family: $font-primary;
font-family: $font-primary;
}

.rollable {
&:hover,
&:focus {
color: #000;
text-shadow: 0 0 10px red;
cursor: pointer;
}
&:hover,
&:focus {
color: #000;
text-shadow: 0 0 10px red;
cursor: pointer;
}
}

.p-side-10 {
padding: 0 10px;
}
padding: 0 10px;
}

#sidebar::-webkit-scrollbar {
width: 6px;
height: 6px;
}

#sidebar::-webkit-scrollbar-thumb {
outline: none;
border-radius: 3px;
background: #782e22;
border: 1px solid var(--color-border-highlight);
}

#sidebar::-webkit-scrollbar-track {
box-shadow: 0 0 1px #999 inset;
border-radius: 4px;
}

:root {
scrollbar-width: initial !important;
scrollbar-color: initial !important;
}

0 comments on commit a282732

Please sign in to comment.