This commit is contained in:
konnorrogers
2024-02-26 12:46:51 -05:00
parent 073d36bd88
commit 9e66fc8f2d
3 changed files with 7 additions and 8 deletions

View File

@@ -1729,4 +1729,4 @@ The following pages demonstrate why this change was necessary.
## 2.0.0-beta.1
- Initial release
- Initial release

View File

@@ -11,14 +11,14 @@ function getScrollbarWidth() {
/**
* Used in conjunction with `scrollbarWidth` to set proper body padding in case the user has padding already on the `<body>` element.
*/
function getExistingBodyPadding () {
const padding = Number(getComputedStyle(document.body).paddingRight.replace(/px/, ""))
function getExistingBodyPadding() {
const padding = Number(getComputedStyle(document.body).paddingRight.replace(/px/, ''));
if (isNaN(padding) || !padding) {
return 0
}
if (isNaN(padding) || !padding) {
return 0;
}
return padding
return padding;
}
/**

View File

@@ -4,7 +4,6 @@
* to reduce the possibility of collisions.
*/
@supports (scrollbar-gutter: stable) {
.sl-scroll-lock {
scrollbar-gutter: stable !important;