right_sidebar: Add minor lefthand padding called for by Vlad's design.

This commit is contained in:
Karl Stolley 2024-08-08 13:51:18 -04:00 committed by Tim Abbott
parent 557038416c
commit c4dfa7890e
2 changed files with 5 additions and 0 deletions

View File

@ -273,6 +273,10 @@
/* Right sidebar */ /* Right sidebar */
--right-sidebar-padding-right: 8px; --right-sidebar-padding-right: 8px;
/* Vlad's design adds 2px of extra padding beyond the
space created by the padding-left on .right-sidebar,
which separates the right sidebar from the message area. */
--right-sidebar-padding-left: 2px;
/* Tippy popover related values */ /* Tippy popover related values */
--navbar-popover-menu-min-width: 230px; --navbar-popover-menu-min-width: 230px;

View File

@ -9,6 +9,7 @@ $user_status_emoji_width: 24px;
.right-sidebar-items { .right-sidebar-items {
padding-right: var(--right-sidebar-padding-right); padding-right: var(--right-sidebar-padding-right);
padding-left: var(--right-sidebar-padding-left);
} }
.right-sidebar-title { .right-sidebar-title {