first commit
This commit is contained in:
@ -0,0 +1,45 @@
|
||||
// Sidebar
|
||||
|
||||
.sidebar-nav {
|
||||
padding: 1rem 2rem;
|
||||
|
||||
li {
|
||||
font-size: .9rem;
|
||||
font-weight: $font-weight-bold;
|
||||
|
||||
&.divider {
|
||||
margin: .3rem 0;
|
||||
}
|
||||
|
||||
a {
|
||||
display: block;
|
||||
padding: .25rem;
|
||||
font-weight: $font-weight-normal;
|
||||
color: var(--template-text-dark);
|
||||
text-decoration: none;
|
||||
|
||||
&::before {
|
||||
margin-inline-end: .5rem;
|
||||
font-family: "Font Awesome 6 Free";
|
||||
font-weight: 900;
|
||||
content: "\f054" #{"/*!rtl:\"\f053\"*/"};
|
||||
}
|
||||
}
|
||||
|
||||
@if $enable-dark-mode {
|
||||
@include color-mode(dark) {
|
||||
a {
|
||||
color: var(--template-text-light);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.item:hover, &.active {
|
||||
background-color: var(--template-bg-dark-60);
|
||||
|
||||
a {
|
||||
color: var(--template-text-light);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user