Initial commit from sbadmin2 template

This commit is contained in:
2025-11-23 10:49:07 +00:00
commit 74f5d3599a
1879 changed files with 201633 additions and 0 deletions

21
scss/_dropdowns.scss Normal file
View File

@@ -0,0 +1,21 @@
// 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;
}
}