Captive Portal - Hotspot Wifi
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.
 
 
 
 

22 lines
356 B

  1. // Custom Dropdown Styling
  2. .dropdown {
  3. .dropdown-menu {
  4. font-size: $dropdown-font-size;
  5. .dropdown-header {
  6. @extend .text-uppercase;
  7. font-weight: 800;
  8. font-size: 0.65rem;
  9. color: $gray-500;
  10. }
  11. }
  12. }
  13. // Utility class to hide arrow from dropdown
  14. .dropdown.no-arrow {
  15. .dropdown-toggle::after {
  16. display: none;
  17. }
  18. }