From 7beef74cbe6932a03df3606f34d4e478ec53e355 Mon Sep 17 00:00:00 2001 From: morethanwords Date: Tue, 19 Jan 2021 16:19:50 +0400 Subject: [PATCH] Fix archived count overflow --- src/scss/partials/_leftSidebar.scss | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/scss/partials/_leftSidebar.scss b/src/scss/partials/_leftSidebar.scss index 8c97d36f..d680e089 100644 --- a/src/scss/partials/_leftSidebar.scss +++ b/src/scss/partials/_leftSidebar.scss @@ -239,7 +239,7 @@ } .sidebar-tools-button .btn-menu { - width: 217px; + min-width: 217px; .archived-count { border-radius: 12px; @@ -252,8 +252,7 @@ font-weight: 500; background-color: #c5c9cc; justify-self: flex-end; - position: absolute; - right: 16px; + margin-left: .625rem; @include respond-to(handhelds) { font-size: 14px; @@ -261,6 +260,10 @@ } } + .btn-menu-item { + padding-right: 1rem; + } + .archived-count:empty { display: none; }