From 2ed54b86093ec623a44a10076479d09e9f3d5402 Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Sun, 19 Sep 2021 14:26:37 +0530 Subject: [PATCH] Fix Buefy UI modal breaking body and sidebar scroll. --- frontend/src/assets/style.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/assets/style.scss b/frontend/src/assets/style.scss index 0e8b9341..85c751d3 100644 --- a/frontend/src/assets/style.scss +++ b/frontend/src/assets/style.scss @@ -170,8 +170,10 @@ section { } /* Fix for sidebar jumping on modals */ -body.is-noscroll .b-sidebar { - top: 26px; +body.is-noscroll { + position: static; + overflow-y: visible; + width: auto; } /* Global notices */