Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions styles/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ section {
right: 0;
z-index: 1100;
color: var(--bg);
/* overflow: hidden prevents the element from contributing to the
viewport scroll-width on iOS Safari, which can otherwise cause
a spurious horizontal scroll on mobile. */
overflow: hidden;
}
.github-corner svg {
fill: var(--accent);
Expand Down
2 changes: 1 addition & 1 deletion styles/content-pages.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

.news-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
gap: 1.25rem;
margin-top: 1.25rem;
}
Expand Down
Loading