SettingNav.scss 763 B

12345678910111213141516171819202122232425262728
  1. .sys-parameter-nav{
  2. .x-nav-box{
  3. ul{
  4. .x-nav-item{
  5. position: relative;
  6. height:55px;
  7. line-height:55px;
  8. text-align: center;
  9. font-size: 16px;
  10. letter-spacing: 1px;
  11. font-weight: 400;
  12. font-family: 'Microsoft YaHei';
  13. cursor: pointer;
  14. }
  15. .x-nav-item-selected{
  16. background:#e5f7ff;
  17. &:before {
  18. content: ' ';
  19. position: absolute;
  20. width: 6px;
  21. height: 55px;
  22. background: #6666ff;
  23. left: 0;
  24. }
  25. }
  26. }
  27. }
  28. }