16 lines
255 B
SCSS
16 lines
255 B
SCSS
|
.footer {
|
||
|
background-color: $violet-dark;
|
||
|
color: $violet-light;
|
||
|
font-size: $font-size-small;
|
||
|
text-align: right;
|
||
|
margin-top: 2em;
|
||
|
ul {
|
||
|
margin: 2em 0;
|
||
|
}
|
||
|
@include nolist();
|
||
|
a {
|
||
|
color: $violet-light;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|