fix: navbar heading icon

This commit is contained in:
zelfroster 2024-01-15 00:06:11 +05:30
parent 7bd9812a61
commit e6e85a0dc5
3 changed files with 16 additions and 4 deletions

View File

@ -8,7 +8,7 @@ root = true
# Change these settings to your own preference
indent_style = space
indent_size = 4
indent_size = 2
# We recommend you to keep these unchanged
end_of_line = lf

View File

@ -11,7 +11,7 @@
&__logo {
padding: 1.2rem 0;
@include flex(column, $align: center, $gap: 0.3rem);
@include flex($align: center, $gap: 0.3rem);
img {
width: 1.6rem;
@ -81,17 +81,20 @@
display: none;
}
}
.nav-menu__box {
.item {
padding: 0.675rem 0;
width: 2.5rem;
justify-content: center;
transition: 300ms;
& p {
display: none;
}
}
}
button i {
rotate: 180deg;
}
@ -107,16 +110,19 @@
width: 13rem;
background-color: white;
@include flex(column);
& a {
text-decoration: none;
text-transform: capitalize;
padding: 1rem;
cursor: pointer;
color: #999;
&:hover {
color: #222;
}
}
& .selected-sidebar-link {
font-weight: bold;
color: #222;
@ -124,20 +130,24 @@
animation: expand-left-border 0.1s;
}
}
.sidebarquickview {
& > h6 {
padding: 0.5rem;
}
& a {
text-decoration: none;
text-transform: capitalize;
padding: 0.5rem 1rem;
display: block;
color: #999;
& a:hover {
color: #222;
}
}
& .selected-sidebarquickview-link {
font-weight: bold;
color: #222;
@ -145,6 +155,7 @@
animation: expand-left-border 0.1s;
}
}
/* Content adjacent to sidebar */
.node-panel {
width: 100%;
@ -156,6 +167,7 @@
from {
border-left: 0;
}
to {
border-left: 5px solid #3ba4d7;
}

File diff suppressed because one or more lines are too long