Use correct variable
parent
9e1bb1b950
commit
07ecb5a872
|
@ -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%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@
|
||||||
|
|
||||||
.blocked-scroll {
|
.blocked-scroll {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-right: var(--scrollbar-width);
|
padding-right: var(--p-scrollbar-width);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue