index.less 534 B

12345678910111213141516171819202122232425262728293031
  1. .page {
  2. background-color: #a0bcda54;
  3. padding: 20px;
  4. min-height: 100vh;
  5. .pageTitle {
  6. display: flex;
  7. padding: 0 10px;
  8. margin-bottom: 10px;
  9. height: 40px;
  10. align-items: center;
  11. position: relative;
  12. justify-content: space-between;
  13. }
  14. .titleBar {
  15. width: 8px;
  16. height: 30px;
  17. background-color: #366cda;
  18. float: left;
  19. }
  20. .title {
  21. font-size: 22px;
  22. padding-left: 12px;
  23. }
  24. .center {
  25. position: absolute;
  26. left: 50%;
  27. top: 50%;
  28. transform: translate(-50%, -50%);
  29. }
  30. }