1234567891011121314151617181920212223242526272829 |
- @import "~antd/lib/style/themes/default.less";
- .globalFooter {
- padding: 0 16px;
- margin: 16px 0 16px 0;
- text-align: center;
- .links {
- margin-bottom: 8px;
- a {
- color: @text-color-secondary;
- transition: all .3s;
- &:not(:last-child) {
- margin-right: 40px;
- }
- &:hover {
- color: @text-color;
- }
- }
- }
- .copyright {
- color: @text-color-secondary;
- font-size: @font-size-base;
- }
- }
|