Use prettier for SCSS (#3895)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / layout / pageFooter.scss
1 .pageFooterCopyright {
2 background-color: $wcfFooterCopyrightBackground;
3 color: $wcfFooterCopyrightText;
4 text-align: center;
5
6 @include screen-md-up {
7 padding: 20px 0;
8 }
9
10 @include screen-sm-down {
11 padding: 20px 0;
12
13 @include wcfFontSmall;
14 }
15
16 > .layoutBoundary > div:not(:first-child) {
17 margin-top: 10px;
18 }
19
20 a {
21 color: $wcfFooterCopyrightLink;
22
23 &:hover {
24 color: $wcfFooterCopyrightLinkActive;
25 text-decoration: underline;
26 }
27 }
28 }