This commit is contained in:
Lanta 2025-06-17 16:37:38 +02:00
parent 136c5f47d2
commit 05796a7881
2 changed files with 41 additions and 0 deletions

View file

@ -81,4 +81,23 @@ table {
section h2 {
margin-top: 10px;
}
/* Videos page responsive adjustments */
.videos-container {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
padding: 1rem;
}
.video-item {
flex: 1 1 100%;
max-width: 100%;
}
.video-item video {
width: 100%;
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}