Skip to content
Merged
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
11 changes: 9 additions & 2 deletions templates/proposal.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@
@media (max-width:34rem){
.page{padding:1.875rem 1rem 2rem}
.mast .lead{font-size:1rem}
.hero{grid-template-columns:minmax(0,1fr);gap:.625rem}
.hero .note{padding-bottom:0}
.support li{padding-block:.3125rem}
.move h2{font-size:1.0625rem}
/* height tightening — spacing only, no content removed */
Expand All @@ -98,6 +96,15 @@
.ask .when{margin-top:.625rem;padding-top:.625rem}
.colophon{margin-top:1.25rem;padding-top:.875rem}
}
@media (max-width:37.5rem){
/* The hero is `minmax(0,auto) minmax(0,1fr)`: the figure claims ~470px, so below 600 the note
column collapses to 0-49px and its `41 minutes` runs past the viewport (49px of horizontal
overflow at 545, 40 at 560, 0 from 600). Stacking until the two-column layout actually fits
is the fix; the previous breakpoint stacked only to 544 and left 545-599 broken. */
.hero{grid-template-columns:minmax(0,1fr);gap:.625rem}
.hero .note{padding-bottom:0}
}

</style>
</head>
<body>
Expand Down
Loading