You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
911 B
43 lines
911 B
1 year ago
|
// Global styles for both custom sidebar and topbar compoments
|
||
|
|
||
|
.sidebar,
|
||
|
.topbar {
|
||
|
.nav-item {
|
||
|
// Customize Dropdown Arrows for Navbar
|
||
|
&.dropdown {
|
||
|
.dropdown-toggle {
|
||
|
&::after {
|
||
|
width: 1rem;
|
||
|
text-align: center;
|
||
|
float: right;
|
||
|
vertical-align: 0;
|
||
|
border: 0;
|
||
|
font-weight: 900;
|
||
|
content: '\f105';
|
||
|
font-family: 'Font Awesome 5 Free';
|
||
|
}
|
||
|
}
|
||
|
&.show {
|
||
|
.dropdown-toggle::after {
|
||
|
content: '\f107';
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// Counter for nav links and nav link image sizing
|
||
|
.nav-link {
|
||
|
position: relative;
|
||
|
.badge-counter {
|
||
|
position: absolute;
|
||
|
transform: scale(0.7);
|
||
|
transform-origin: top right;
|
||
|
right: .25rem;
|
||
|
margin-top: -.25rem;
|
||
|
}
|
||
|
.img-profile {
|
||
|
height: 2rem;
|
||
|
width: 2rem;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|