summaryrefslogtreecommitdiff
path: root/packages/frontend/src/ui/classic.vue
diff options
context:
space:
mode:
authorMarie <marie@kaifa.ch>2023-11-29 02:45:41 +0100
committerGitHub <noreply@github.com>2023-11-29 02:45:41 +0100
commit5f3754f9fcd3ca9be1b50a01dc2ee4e81a64cd1a (patch)
tree7726f0c8a6cc16ab6ac251baec73aba9e9d2214f /packages/frontend/src/ui/classic.vue
parentupd: create Folders for imported media (diff)
parentremove background from widgets (diff)
downloadsharkey-5f3754f9fcd3ca9be1b50a01dc2ee4e81a64cd1a.tar.gz
sharkey-5f3754f9fcd3ca9be1b50a01dc2ee4e81a64cd1a.tar.bz2
sharkey-5f3754f9fcd3ca9be1b50a01dc2ee4e81a64cd1a.zip
merge: fix classic ui sidebars not sticking
Diffstat (limited to 'packages/frontend/src/ui/classic.vue')
-rw-r--r--packages/frontend/src/ui/classic.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/frontend/src/ui/classic.vue b/packages/frontend/src/ui/classic.vue
index c4239fc9db..8f06f66012 100644
--- a/packages/frontend/src/ui/classic.vue
+++ b/packages/frontend/src/ui/classic.vue
@@ -253,9 +253,13 @@ onMounted(() => {
}
> .widgets {
- //--panelBorder: none;
+ position: sticky;
+ top: 0;
width: 300px;
- padding-bottom: calc(var(--margin) + env(safe-area-inset-bottom, 0px));
+ height: 100%;
+ padding-top: 16px;
+ box-sizing: border-box;
+ overflow: auto;
@media (max-width: $widgets-hide-threshold) {
display: none;