20 lines
345 B
CSS
20 lines
345 B
CSS
/* Eryn Wells <eryn@erynwells.me> */
|
|
|
|
:has(> img) {
|
|
grid-column: content-start / content-end;
|
|
line-height: 0;
|
|
}
|
|
|
|
@media (max-width: 639px) {
|
|
:has(> img) {
|
|
grid-column: gutter-start / gutter-end;
|
|
}
|
|
}
|
|
|
|
main {
|
|
gap: var(--body-item-spacing) 0;
|
|
}
|
|
|
|
article > :is(h1, h2, h3, h4, h5, h6) {
|
|
grid-column: content-start / content-end;
|
|
}
|