21 lines
378 B
SCSS
21 lines
378 B
SCSS
|
.site-footer {
|
||
|
grid-area: footer;
|
||
|
display: block;
|
||
|
width: 99%; /* Overflows right of viewport otherwise */
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
|
||
|
& p {
|
||
|
width: fit-content;
|
||
|
margin: auto;
|
||
|
background: $light;
|
||
|
border: 2px solid black;
|
||
|
padding: 0.4em;
|
||
|
border-bottom: none;
|
||
|
font-size: 0.6em;
|
||
|
@include mq('desktop') {
|
||
|
font-size: 1em;
|
||
|
}
|
||
|
}
|
||
|
}
|