forked from Bunteshaus/bunteshaus.de
31 lines
478 B
SCSS
31 lines
478 B
SCSS
.footer {
|
|
flex-grow: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
margin-top: 1rem;
|
|
width: 98vw;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
flex-direction: column-reverse;
|
|
div {
|
|
margin-top: 1rem;
|
|
}
|
|
.infobox {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.footer {
|
|
max-width: 89%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
flex-direction: row;
|
|
.infobox {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|