mirror of
https://github.com/loviuz/wifi-probe-aggregator.git
synced 2025-01-04 03:10:29 +01:00
22 lines
356 B
SCSS
Executable File
22 lines
356 B
SCSS
Executable File
// Custom Dropdown Styling
|
|
|
|
.dropdown {
|
|
.dropdown-menu {
|
|
font-size: $dropdown-font-size;
|
|
.dropdown-header {
|
|
@extend .text-uppercase;
|
|
font-weight: 800;
|
|
font-size: 0.65rem;
|
|
color: $gray-500;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Utility class to hide arrow from dropdown
|
|
|
|
.dropdown.no-arrow {
|
|
.dropdown-toggle::after {
|
|
display: none;
|
|
}
|
|
}
|