Files
runosaari/styles/Footer.module.scss
2026-04-29 22:48:56 +03:00

55 lines
763 B
SCSS

.footer {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
margin-top: 3rem;
}
.container {
display: flex;
justify-content: space-between;
width: 50%;
align-items: flex-start;
}
.middle {
display: flex;
align-items: center;
flex-direction: column;
}
.logo {
max-width: 55px;
margin-top: 5px;
margin-bottom: 1rem;
}
.right {
text-align: right;
}
@media screen and (max-width: 600px) {
.container {
width: 95% !important;
flex-direction: column;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
gap: 1rem;
}
.footer {
text-align: center !important;
}
.middle {
order: 1;
}
.left, .right {
width: 100%;
text-align: center;
}
}