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:
parent
3f9f42f478
commit
04a4c46145
Binary file not shown.
|
Before Width: | Height: | Size: 3.0 MiB After Width: | Height: | Size: 538 KiB |
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue