123456789101112131415161718192021222324252627 |
- .ui-menu-item {
- height: 100%;
- width: 100%;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- color: var(--editor-men-color);
- transition: all .3s ease;
- span{
- width: 100%;
- text-align: center;
- margin-top: 6px;
- overflow: hidden;
- }
- &:hover{
- color: var( --color-main-hover);
- }
- &.active{
- color: var( --color-main-normal);
- background-color: var(--editor-menu-active);
- }
- }
|