fix layout error

This commit is contained in:
2025-04-09 16:28:02 +04:00
parent 79397e452e
commit 778de896bc
+8 -4
View File
@@ -670,15 +670,21 @@
@media (max-width: 992px) {
.video-page {
grid-template-columns: 1fr;
display: flex;
flex-direction: column;
}
.video-content {
grid-column: 1;
width: 100%;
order: 2;
}
.video-suggestions {
grid-column: 1;
margin-top: 20px;
width: 100%;
order: 3;
}
.suggestion-list {
@@ -689,6 +695,8 @@
.video-player-container {
max-width: 100%;
width: 100%;
order: 1;
}
}
@@ -733,20 +741,16 @@
@media (max-width: 576px) {
.video-page {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 10px;
}
.video-player-container {
order: 1;
margin-bottom: 0;
}
.video-content,
.video-suggestions {
order: 2;
width: 100%;
}