Files
2025-07-15 15:54:43 +05:30

34 lines
705 B
SCSS

/* Dropdowns */
.dropdown {
.dropdown-toggle {
&:after {
border-top: 0;
border-right: 0;
border-left: 0;
border-bottom: 0;
font: normal normal normal 24px/1 "Material Design Icons";
content: "\F140";
width: auto;
height: auto;
vertical-align: middle;
line-height: .625rem;
font-size: 1.25rem;
margin-left: 0;
}
}
.dropdown-menu {
margin-top: .75rem;
font-size: $default-font-size;
box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
border-radius: 5px;
.dropdown-item {
font-size: .875rem;
padding: .25rem 1.5rem;
&:active {
background: initial;
}
}
}
}