index.less 315 B

123456789101112131415161718192021222324
  1. .menu {
  2. display: flex;
  3. align-items: center;
  4. width: max-content;
  5. overflow-x: auto;
  6. height: calc(100vh - 6px);
  7. }
  8. .menuItem {
  9. padding: 20px;
  10. color: #333;
  11. font-size: 28px;
  12. cursor: pointer;
  13. &.active {
  14. color: #4A90E2;
  15. font-weight: bold;
  16. }
  17. }
  18. :global {
  19. #root {
  20. min-height: auto;
  21. }
  22. }