index.less 877 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .shadow {
  2. box-shadow: 2px 0 6px rgba(0, 21, 41, .35);
  3. ::-webkit-scrollbar-button {
  4. display: none !important;
  5. width: 0;
  6. height: 0;
  7. }
  8. }
  9. .side-menu {
  10. min-height: 100vh;
  11. overflow-y: auto;
  12. z-index: 10;
  13. .logo {
  14. height: 64px;
  15. position: relative;
  16. // line-height: 64px;
  17. display: flex;
  18. align-items: center;
  19. padding-left: 24px;
  20. -webkit-transition: all .3s;
  21. transition: all .3s;
  22. overflow: hidden;
  23. // background-color: @layout-trigger-background;
  24. &.light {
  25. background-color: #fff;
  26. h1 {
  27. // color: @primary-color;
  28. }
  29. }
  30. h1 {
  31. // color: @menu-dark-highlight-color;
  32. font-size: 20px;
  33. margin: 0 0 0 12px;
  34. display: inline-block;
  35. vertical-align: middle;
  36. }
  37. img {
  38. width: 32px;
  39. vertical-align: middle;
  40. }
  41. }
  42. }
  43. .menu {
  44. padding: 16px 0;
  45. }