Crop Sankofa white borders, center bottom row of installations grid

Flexbox layout centers the 2 bottom items under the 3 top items.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-19 15:06:11 -07:00
parent 3f9f42f478
commit 04a4c46145
2 changed files with 9 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 MiB

After

Width:  |  Height:  |  Size: 538 KiB

View File

@ -301,11 +301,16 @@
}
.installations-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
}
.installation-item {
flex: 0 0 calc(33.333% - 1rem);
}
.installation-item {
position: relative;
overflow: hidden;
@ -676,8 +681,8 @@
grid-template-columns: 1fr;
}
.installations-grid {
grid-template-columns: 1fr;
.installation-item {
flex: 0 0 100%;
}
.installation-item img,