index.less 771 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .dashboard {
  2. height: calc(100vh - 48px - 48px);
  3. overflow-y: scroll;
  4. :global(.ant-pro-basicLayout-content) {
  5. margin: 24px 24px 0 24px !important;
  6. }
  7. // @media (max-width: 767.98px) {
  8. // .ant-pro-basicLayout-content {
  9. // margin: 0 !important;
  10. // }
  11. // }
  12. &::-webkit-scrollbar {
  13. display: none;
  14. }
  15. .staffItem {
  16. padding: 5px 8px 18px 8px;
  17. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  18. &.active {
  19. background: #886ab5;
  20. color: white;
  21. }
  22. .extra {
  23. position: absolute;
  24. bottom: -2px;
  25. left: 8px;
  26. width: 30px;
  27. margin: 0 auto;
  28. white-space: nowrap;
  29. transform: scale(0.8);
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. }
  34. }
  35. }