index.less 747 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import "~antd/lib/style/themes/default.less";
  2. .globalFooter {
  3. padding: 0 16px;
  4. margin: 48px 0 24px 0;
  5. text-align: center;
  6. .links {
  7. margin-bottom: 8px;
  8. a {
  9. color: @text-color-secondary;
  10. transition: all .3s;
  11. &:not(:last-child) {
  12. margin-right: 40px;
  13. }
  14. &:hover {
  15. color: @text-color;
  16. }
  17. }
  18. }
  19. .linksInverse {
  20. margin-bottom: 8px;
  21. a {
  22. color: #fff;
  23. transition: all .3s;
  24. &:not(:last-child) {
  25. margin-right: 40px;
  26. }
  27. &:hover {
  28. color: #fff;
  29. }
  30. }
  31. }
  32. .copyright {
  33. color: @text-color-secondary;
  34. font-size: @font-size-base;
  35. }
  36. .copyrightInverse {
  37. color: #fff;
  38. font-size: @font-size-base;
  39. }
  40. }