1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-07-01 06:01:48 +02:00
portfolio/src/components/Layout.module.css

16 lines
313 B
CSS
Raw Normal View History

2020-03-07 03:11:52 +01:00
.screen {
2020-03-22 00:27:33 +01:00
margin-top: calc(var(--spacer) * var(--line-height));
2020-03-07 03:11:52 +01:00
}
.screen > article {
2020-03-22 00:27:33 +01:00
display: grid;
grid-template-columns:
[full-start] minmax(var(--spacer), 1fr)
[main-start] minmax(0, 38rem) [main-end]
minmax(var(--spacer), 1fr) [full-end];
2020-03-07 03:11:52 +01:00
}
.screen > article > * {
2020-03-22 00:27:33 +01:00
grid-column: main;
2020-03-07 03:11:52 +01:00
}