753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
|
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;
|
|
|
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
|
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;
|