index.less 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .user-layout {
  2. margin-top: 30px !important;
  3. position: relative;
  4. .block-layout {
  5. background: rgba(255, 255, 255, 1);
  6. box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.06);
  7. border-radius: 12px;
  8. position: relative;
  9. margin-bottom: 10px;
  10. }
  11. .left-layout {
  12. width: 150px;
  13. position: absolute;
  14. left: 0;
  15. top: 0;
  16. .block-layout {
  17. padding: 24px 0;
  18. padding-right: 8px;
  19. }
  20. .item {
  21. display: block;
  22. height: 32px;
  23. line-height: 32px;
  24. color: #686872;
  25. text-align: center;
  26. margin: 4px 0;
  27. }
  28. .item:hover,
  29. .item.active {
  30. color: #fff;
  31. background: #4299FF;
  32. border-top-right-radius: 16px;
  33. border-bottom-right-radius: 16px;
  34. }
  35. }
  36. .center-layout {
  37. padding-left: 160px;
  38. }
  39. .right-layout {
  40. width: 230px;
  41. display: none;
  42. position: absolute;
  43. top: 0;
  44. right: 0;
  45. }
  46. }
  47. .user-layout.right {
  48. .center-layout {
  49. padding-right: 240px;
  50. }
  51. .right-layout {
  52. display: block;
  53. }
  54. }