bunteshaus.de/themes/buha/assets/scss/footer.scss

33 lines
509 B
SCSS
Raw Normal View History

2022-06-08 00:38:13 +02:00
.footer {
flex-grow: 0;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 1rem;
2022-06-12 19:27:57 +02:00
width: 98vw;
2022-06-08 00:38:13 +02:00
margin-left: auto;
margin-right: auto;
flex-direction: column-reverse;
.infobox {
2022-06-15 00:37:18 +02:00
display: flex;
flex-direction: column;
2022-06-08 00:38:13 +02:00
text-align: center;
2022-06-15 00:37:18 +02:00
a {
margin-top: 1em;
}
2022-06-08 00:38:13 +02:00
}
}
@media (min-width: 640px) {
.footer {
2022-06-12 19:27:57 +02:00
max-width: 89%;
2022-06-08 00:38:13 +02:00
margin-left: auto;
margin-right: auto;
flex-direction: row;
.infobox {
text-align: left;
}
}
}