Spaces:
Configuration error
Configuration error
File size: 408 Bytes
74aacd5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
@use '../../styles/Mixins/' as *;
.landing-page {
display: grid;
place-self: center;
justify-items: center;
row-gap: 2rem;
grid-auto-rows: max-content;
@include mobile {
padding: 1rem;
}
h1 {
text-align: center;
font-size: 1.4rem;
@include mobile {
font-size: 1.2rem;
}
}
a {
color: var(--link-color);
}
}
.landing-file-selector {
display: grid;
}
|