mirror of
https://github.com/shoelace-style/shoelace.git
synced 2026-01-12 11:09:13 +00:00
prettier
This commit is contained in:
@@ -1729,4 +1729,4 @@ The following pages demonstrate why this change was necessary.
|
||||
|
||||
## 2.0.0-beta.1
|
||||
|
||||
- Initial release
|
||||
- Initial release
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
* to reduce the possibility of collisions.
|
||||
*/
|
||||
|
||||
|
||||
@supports (scrollbar-gutter: stable) {
|
||||
.sl-scroll-lock {
|
||||
scrollbar-gutter: stable !important;
|
||||
|
||||
Reference in New Issue
Block a user