mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-08-15 02:15:02 +00:00
scroll-bar-width css variable attached to global
This commit is contained in:
parent
1c40a92717
commit
1998811678
1 changed files with 5 additions and 1 deletions
|
|
@ -42,6 +42,10 @@
|
|||
font-style: normal;
|
||||
}
|
||||
|
||||
:root {
|
||||
--scroll-bar-width: 8px;
|
||||
}
|
||||
|
||||
:global {
|
||||
* {
|
||||
margin: 0px;
|
||||
|
|
@ -64,7 +68,7 @@
|
|||
line-height: 1;
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
width: var(--scroll-bar-width);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
|
|
|
|||
Loading…
Reference in a new issue