Update video row layout and responsiveness in index.css

This commit is contained in:
2026-01-08 02:30:22 +01:00
parent 4be37c2544
commit 2f4617e3a3

View File

@@ -218,10 +218,10 @@ h4 {
}
.video-row {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
display: grid;
grid-template-columns: 1fr 220px;
align-items: start;
gap: 0.75rem;
}
.video-actions {
@@ -231,7 +231,9 @@ h4 {
.video-cta {
display: flex;
justify-content: center;
justify-content: flex-start;
align-items: center;
height: 100%;
}
.video-cta .button {
@@ -239,6 +241,15 @@ h4 {
font-size: 1.05rem;
}
@media (max-width: 820px) {
.video-row {
grid-template-columns: 1fr;
}
.video-cta {
justify-content: center;
}
}
.ig-block {
display: flex;
gap: 0.75rem;