Added a new scrollbar to Ombi

This commit is contained in:
tidusjar 2018-03-23 15:59:57 +00:00
commit 1138f09286
2 changed files with 25 additions and 1 deletions

View file

@ -1 +1,2 @@
@import './styles.scss';
@import './styles.scss';
@import './scrollbar.scss';

View file

@ -0,0 +1,23 @@
::-webkit-scrollbar {
width: 15px;
}
::-webkit-scrollbar-track {
background-color: rgba(0,0,0,.2);
}
::-webkit-scrollbar-thumb {
min-height: 50px;
background-color: rgba(255,255,255,.15);
border: 3px solid transparent;
border-radius: 8px;
background-clip: padding-box;
}
pre::-webkit-scrollbar-track {
background-color: rgba(255,255,255,.2);
}
pre::-webkit-scrollbar-thumb {
background-color: rgba(0,0,0,.15);
}