From c01db7c9e1fdac307da9b7abbe7107e0029378b8 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 18 Oct 2022 19:35:35 +0200 Subject: [PATCH] remove the gap between the window's top and menu categories (large menu) --- CHANGELOG.md | 3 +++ css/sideMenu.css | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bee7dc8..a0d6bba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## [Unreleased] +### Fixed +- Remove the gap between the window's top and menu categories (large menu) + ## 3.0.0 ### Added * Add compatibility with NC25 (#136/#135) diff --git a/css/sideMenu.css b/css/sideMenu.css index a99de63..907c7e6 100644 --- a/css/sideMenu.css +++ b/css/sideMenu.css @@ -197,10 +197,10 @@ } .side-menu-categories { - max-height: calc(100vh - 50px); + max-height: calc(100vh - 5px); overflow: auto; position: relative; - top: 50px; + top: 5px; display: flex; flex-wrap: wrap; justify-content: center;