From 4007ddbf325901f5ab27ba85a06c5c311ec6ea0a Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 7 Apr 2022 16:10:35 +0300 Subject: [PATCH 1/2] oops --- src/App.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.scss b/src/App.scss index 1e8f7cdd9..87ef1f06c 100644 --- a/src/App.scss +++ b/src/App.scss @@ -36,6 +36,7 @@ body { &::-webkit-scrollbar-thumb { background-color: var(--btn); box-shadow: var(--buttonShadow); + border-radius: var(--btnRadius); } &::-webkit-scrollbar-button { @@ -43,7 +44,6 @@ body { color: var(--btnText); background-repeat: no-repeat, no-repeat; - border-radius: var(--btnRadius); &:horizontal { background-size: 50% calc(50% - var(--___bgPadding)), 50% calc(50% - var(--___bgPadding)); From 51c996bd7e964802233f031090a97b6e3786794d Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 7 Apr 2022 16:18:39 +0300 Subject: [PATCH 2/2] boost z-index of popover --- src/components/popover/popover.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/popover/popover.vue b/src/components/popover/popover.vue index 332a0398f..4b3ad7da0 100644 --- a/src/components/popover/popover.vue +++ b/src/components/popover/popover.vue @@ -37,7 +37,7 @@ } .popover { - z-index: 8; + z-index: 90; position: absolute; min-width: 0; }