index.less 486 B

12345678910111213141516171819202122232425262728
  1. .page-container{
  2. display: flex;
  3. height: 100vh;
  4. .page-left{
  5. max-width: var(--slideWidth);
  6. overflow: hidden;
  7. transition: width .3s;
  8. }
  9. .page-main{
  10. flex: 1;
  11. .main-header{
  12. transition: width .5s;
  13. height: 50px;
  14. display: flex;
  15. align-items: center;
  16. position: fixed;
  17. top: 0;
  18. right: 0;
  19. background: red;
  20. //width: calc(100% - var(--slideWidth));
  21. }
  22. }
  23. }
  24. .el-menu-vertical-demo:not(.el-menu--collapse) {
  25. width: 200px;
  26. height: 100vh;
  27. min-height: 400px;
  28. }