Second Commit
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

22 行
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. }