1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 08:25:21 -04:00
jarv.is/app/layout.module.css

27 lines
367 B
CSS

.layout {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.default {
width: 100%;
padding: 1.5em;
font-size: 0.9em;
line-height: 1.7;
color: var(--colors-text);
}
.container {
width: 100%;
max-width: var(--max-width);
margin: 0 auto;
}
@media (max-width: 768px) {
.default {
font-size: 0.925em;
line-height: 1.85;
}
}