Cataloguer/assets/css/layout/_footer.scss
2022-12-17 12:41:44 -06:00

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;
}
}
}