blob: 54a0500b416805ca373571c381ef43a046a9a183 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@mixin styles {
.boxesFooterBoxes {
a {
&:hover {
text-decoration: underline;
}
}
}
}
@mixin styles--dark {
.pageFooter {
border-block-start: 1px solid rgba(#fff, .1);
}
}
|