123456789101112131415161718192021222324 |
- .menu {
- display: flex;
- align-items: center;
- width: max-content;
- overflow-x: auto;
- height: calc(100vh - 6px);
- }
- .menuItem {
- padding: 20px;
- color: #333;
- font-size: 28px;
- cursor: pointer;
- &.active {
- color: #4A90E2;
- font-weight: bold;
- }
- }
- :global {
- #root {
- min-height: auto;
- }
- }
|