mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Added a new scrollbar to Ombi
This commit is contained in:
parent
409945e492
commit
1138f09286
2 changed files with 25 additions and 1 deletions
|
@ -1 +1,2 @@
|
|||
@import './styles.scss';
|
||||
@import './styles.scss';
|
||||
@import './scrollbar.scss';
|
23
src/Ombi/ClientApp/styles/scrollbar.scss
Normal file
23
src/Ombi/ClientApp/styles/scrollbar.scss
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue