Use correct variable

pull/5507/head
Cagatay Civici 2024-04-02 13:29:01 +03:00
parent 9e1bb1b950
commit 07ecb5a872
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
width: calc(100% - var(--scrollbar-width, 0px)); width: calc(100% - var(--p-scrollbar-width, 0px));
height: 100%; height: 100%;
} }

View File

@ -120,7 +120,7 @@
.blocked-scroll { .blocked-scroll {
overflow: hidden; overflow: hidden;
padding-right: var(--scrollbar-width); padding-right: var(--p-scrollbar-width);
} }
} }

View File

@ -2,7 +2,7 @@
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
width: calc(100% - var(--scrollbar-width, 0px)); width: calc(100% - var(--p-scrollbar-width, 0px));
z-index: 1100; z-index: 1100;
transition: background-color .5s, border-color .5s; transition: background-color .5s, border-color .5s;
border-bottom: 1px solid transparent; border-bottom: 1px solid transparent;