1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
.streams-container { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; } .camera-stream { flex: 0 1 320px; margin: 10px; text-align: center; } @media (max-width: 600px) { .streams-container { flex-direction: column; align-items: center; } .camera-stream { width: 100%; max-width: 100vw; } }