Fix some sizing issues

This commit is contained in:
2025-10-17 19:11:10 +01:00
parent 6838f603a1
commit 8ad638f496

View File

@@ -48,7 +48,7 @@
} }
#projects{ #projects{
align-items: center; align-items: stretch;
justify-content: center; justify-content: center;
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
@@ -58,7 +58,6 @@
.project{ .project{
width: 20vw; width: 20vw;
height: 25vw;
} }
#top-nav{ #top-nav{
@@ -98,18 +97,21 @@
} }
.yt { .yt {
width: 74%; width: calc(66% - 40px);
height: 40vh; min-height: 100%;
} }
.gallery { .gallery {
display: flex; display: flex;
height: 35vh; height: fit-content;
padding: 10px 0; padding: 10px 0;
} }
.gallery * { .gallery * {
height: inherit !important;
padding: 0 20px; padding: 0 20px;
} }
.gallery>img {
width: calc(33% - 40px);
}
} }