index.less 815 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @import (reference) '~antd/es/style/themes/index';
  2. .container {
  3. display: flex;
  4. flex-direction: column;
  5. height: 100vh;
  6. overflow: auto;
  7. background: @layout-body-background;
  8. }
  9. .lang {
  10. width: 100%;
  11. height: 40px;
  12. line-height: 44px;
  13. text-align: right;
  14. :global(.ant-dropdown-trigger) {
  15. margin-right: 24px;
  16. }
  17. }
  18. .content {
  19. flex: 1;
  20. padding: 32px 0;
  21. }
  22. @media (min-width: @screen-md-min) {
  23. .container {
  24. background-image: url('https://mdn.alipayobjects.com/yuyan_qk0oxh/afts/img/V-_oS6r-i7wAAAAAAAAAAAAAFl94AQBr');
  25. background-size: cover;
  26. }
  27. .content {
  28. padding: 32px 0 24px;
  29. }
  30. }
  31. .icon {
  32. margin-left: 8px;
  33. color: rgba(0, 0, 0, 0.2);
  34. font-size: 24px;
  35. vertical-align: middle;
  36. cursor: pointer;
  37. transition: color 0.3s;
  38. &:hover {
  39. color: @primary-color;
  40. }
  41. }