1234567891011121314151617181920212223242526272829303132 |
- .LeftBar{
- padding-top: 20px;
- :global{
- .leftRow{
- cursor: pointer;
- width: 100%;
- height: 70px;
- font-size: 16px;
- display: flex;
- justify-content: center;
- align-items: center;
- &>div{
- opacity: 0;
- }
- &:hover{
- color: var(--themeColor);
- }
- }
- .active{
- background-color: var(--themeColor);
- color: #D3B453;
- pointer-events: none;
- &>div{
- opacity: 1;
- width: 10px;
- height: 10px;
- background-color: #D3B453;
- border-radius: 50%;
- }
- }
- }
- }
|