Cataloguer/assets/css/layout/_footer.scss

21 lines
378 B
SCSS
Raw Normal View History

2022-12-17 18:41:44 +00:00
.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;
}
}
}