This commit is contained in:
leejinho 2020-02-12 11:04:54 +09:00
commit 74ba71ceb9
2 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,4 @@
@charset 'utf-s'; @charset 'utf-8';
:host { :host {
display: flex; display: flex;
width: 100%; width: 100%;

View File

@ -49,6 +49,22 @@
position: absolute; position: absolute;
max-width: none !important; max-width: none !important;
} }
&::-webkit-scrollbar {
background-color: rgba(0, 0, 0, 0.7);
}
&::-webkit-scrollbar-corner {
background-color: rgba(0, 0, 0, 0.7);
}
&::-webkit-scrollbar:hover {
background-color: rgba(255, 255, 255, 0.12);
}
&::-webkit-scrollbar-thumb {
box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.37);
}
&::-webkit-scrollbar-thumb:active {
box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.54);
}
} }
} }
} }