fix: make textimage size real 50%

This commit is contained in:
2024-12-15 21:49:56 +01:00
parent ec7ae2bba3
commit b03f3340b9

View File

@@ -3,9 +3,10 @@
}
.textimage-container {
--gap: 2rem;
display: flex;
flex-direction: column;
gap: 2rem;
gap: var(--gap);
}
.textimage-wrapper {
@@ -62,11 +63,11 @@
}
.textimage-image-wrapper.size-25 {
flex: 0 0 25%;
flex: 0 0 calc(25% - (var(--gap) / 2));
}
.textimage-image-wrapper.size-50 {
flex: 0 0 50%;
flex: 0 0 calc(50% - (var(--gap) / 2));
}
.textimage-wrapper {