74 lines
1.5 KiB
SCSS
74 lines
1.5 KiB
SCSS
.sidebar-wrapper,
|
|
.sidebar-hamburger-dropdown {
|
|
@include breakpoint(medium) {
|
|
background: var(--secondary);
|
|
.sidebar-footer-wrapper {
|
|
background: var(--secondary);
|
|
.sidebar-footer-container::before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
.has-full-page-chat &,
|
|
.has-full-page-chat & .sidebar-footer-wrapper {
|
|
background: transparent;
|
|
}
|
|
.sidebar-container {
|
|
border-right: none;
|
|
}
|
|
|
|
.sidebar-sections {
|
|
padding: 0;
|
|
}
|
|
.sidebar-section-link {
|
|
font-size: var(--font-up-1);
|
|
transition: none;
|
|
border-radius: var(--d-border-radius);
|
|
}
|
|
.dropdown-menu__item .sidebar-section-link {
|
|
border-radius: 0px;
|
|
}
|
|
}
|
|
|
|
.sidebar-section-wrapper {
|
|
@include breakpoint(extra-large, $rule: min-width) {
|
|
padding-block: 0.45em;
|
|
}
|
|
@include breakpoint(mobile-extra-large) {
|
|
.hamburger-panel .revamped & {
|
|
margin-bottom: var(--spacing-block-m);
|
|
}
|
|
}
|
|
.sidebar-section-header {
|
|
font-size: var(--font-down-1);
|
|
}
|
|
.sidebar-section-content {
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
@include breakpoint(extra-large, $rule: min-width) {
|
|
gap: var(--spacing-block-xs);
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar-section-link-wrapper .sidebar-section-link:focus,
|
|
.sidebar-section-link-wrapper .sidebar-section-link:hover {
|
|
.d-icon {
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
|
|
.sidebar-new-topic-button__wrapper {
|
|
margin-bottom: 1.5rem;
|
|
@media screen and (max-width: 1000px) {
|
|
.sidebar-new-topic-button .d-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sidebar-wrapper .sidebar-sections {
|
|
padding: 0 1rem;
|
|
}
|