24 lines
352 B
SCSS
24 lines
352 B
SCSS
|
#footer {
|
||
|
display: flex;
|
||
|
font-weight: bold;
|
||
|
padding: 2rem;
|
||
|
@include constrain-width;
|
||
|
|
||
|
a {
|
||
|
border-bottom: 0.25rem solid;
|
||
|
padding-bottom: 0.25rem;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#license {
|
||
|
margin-left: auto;
|
||
|
|
||
|
&::before {
|
||
|
content: '©';
|
||
|
display: inline-block;
|
||
|
padding-left: 0.25rem;
|
||
|
transform: scale(-1, 1);
|
||
|
}
|
||
|
}
|