33 lines
486 B
SCSS
33 lines
486 B
SCSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.title {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.centered {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.gridlayout div {
|
|
margin: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1100px) {
|
|
.gridlayout {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
align-items: center;
|
|
|
|
div {
|
|
grid-column: span 1;
|
|
}
|
|
}
|
|
}
|