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
6 changes: 5 additions & 1 deletion static/css/steering-committee.css
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,11 @@ article.article .article-container .article-title {
/* overflow stays visible so the connecting bar can reach into the gap; the photo
itself is clipped by .sc-card-photo. */
overflow: visible;
border: 1px solid transparent;
/* No border: title cards have border:0, and with box-sizing:border-box a 1px border
here would push the absolutely-positioned photo and connecting bar 1px inward, so
photo cards would sit lower/smaller than title cards and the top bars wouldn't line
up into one continuous row. */
border: 0;
/* Portrait aspect ratio 2:3 */
aspect-ratio: 2/3;
transition: box-shadow 0.3s ease;
Expand Down
Loading