From 3074b4a676bd33f72b2d451760ae10294926302d Mon Sep 17 00:00:00 2001 From: Jiahao Li <42709836+TheJiahao@users.noreply.github.com> Date: Wed, 6 Mar 2024 20:26:59 +0200 Subject: [PATCH] fix(sidebar): Gap missing in bottom section --- assets/scss/partials/menu.scss | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/assets/scss/partials/menu.scss b/assets/scss/partials/menu.scss index 400d9c1..f9ec3e7 100644 --- a/assets/scss/partials/menu.scss +++ b/assets/scss/partials/menu.scss @@ -145,8 +145,7 @@ padding: 15px 0; } - &, - .menu-bottom-section { + & { gap: 30px; @include respond(xl) { gap: 25px; @@ -206,13 +205,17 @@ } .menu-bottom-section { - margin-top: auto; - display: flex; - flex-direction: column; - width: 100%; - ol { + margin-top: auto; + display: flex; + flex-direction: column; + width: 100%; padding-left: 0; + gap: 30px; + + @include respond(xl) { + gap: 25px; + } } } }