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.

29 lines
538 B

12 months ago
  1. .header {
  2. width: 100%;
  3. background: @component-background;
  4. height: 64px;
  5. padding: 0;
  6. box-shadow: 0 0.3px 0.9px rgba(0,0,0,0.12), 0 1.6px 3.6px rgba(0,0,0,0.12);
  7. z-index: 2;
  8. }
  9. .content {
  10. height: 64px;
  11. display: flex;
  12. align-items: center;
  13. cursor: pointer;
  14. padding: 0 30px;
  15. transition: all .3s;
  16. &:hover {
  17. background: rgba(0, 0, 0, .025);
  18. }
  19. }
  20. .toggleMenu{
  21. display: inline-block;
  22. height: 64px;
  23. line-height: 64px;
  24. padding: 0 24px;
  25. font-size: 20px;
  26. cursor: pointer;
  27. transition: all .3s,padding 0s;
  28. }