665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
|
section.entry-content {
grid-area: main;
/* Prevent content from overriding grid column sizing */
/* See https://css-tricks.com/preventing-a-grid-blowout/ */
min-width: 0;
}
section.entry-content:first-child {
margin-top: 0 !important;
}
article>:last-child::after {
content: none;
margin 0;
display: none;
|
|
|
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
|
section.entry-content {
grid-area: main;
/* Prevent content from overriding grid column sizing */
/* See https://css-tricks.com/preventing-a-grid-blowout/ */
min-width: 0;
}
section.entry-content :first-child {
margin-top: 0 !important;
}
article>:last-child::after {
content: none;
margin 0;
display: none;
|