VEGA-4856 Корректировка правого элемента меню

This commit is contained in:
Русович Виолетта Игоревна
2025-08-22 06:50:47 +00:00
committed by Речкина Елена Валерьевна
parent be581a8757
commit 022a3ad303
2 changed files with 47 additions and 8 deletions
@@ -82,7 +82,7 @@ const { hasSidebar } = useSidebar()
.VPContent.has-sidebar { .VPContent.has-sidebar {
margin: var(--vp-layout-top-height, 0px) 0 0; margin: var(--vp-layout-top-height, 0px) 0 0;
padding-left: var(--vp-sidebar-width); padding-left: 320px;
} }
} }
@@ -1,10 +1,49 @@
.VPDocAside { @use '@beeline/design-tokens/scss/tokens/components/navigationDrawer';
.outline-link {
font-size: 16px;
}
.outline-title { .VPDocAside {
font-size: 17px; .outline-link {
font-weight: 500; font-weight: 400;
font-size: 17px;
line-height: 22px;
letter-spacing: 0.2px;
padding-top: 8px;
padding-bottom: 8px;
white-space: unset;
}
.outline-link.active {
font-weight: 500 !important;
}
.outline-title {
font-size: 17px;
font-weight: 500;
line-height: 22px;
padding-bottom: 16px;
}
.content {
padding-left: 0px !important;
border-left: 0px !important;
nav {
border-left: 1px solid var(--vp-c-divider) !important;
.outline-link {
padding-left: 20px !important;
&.active {
padding-left: 16px !important;
position: relative !important;
left: -1px !important;
border-left: navigationDrawer.$navigation-drawer-item-indicator-width solid
navigationDrawer.$navigation-drawer-item-activated-indicator-color !important;
border-top-right-radius: navigationDrawer.$navigation-drawer-item-indicator-border-radius-topright !important;
border-bottom-right-radius: navigationDrawer.$navigation-drawer-item-indicator-border-radius-bottomright !important;
}
}
} }
}
} }