Skip to content

Commit

Permalink
added grid css
Browse files Browse the repository at this point in the history
  • Loading branch information
sudarshan1994 committed Jul 19, 2023
1 parent fdf157a commit 65cfb5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion static/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,11 @@
}



.video-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(7, 1fr);
gap: 20px;
padding: 20px;
}
Expand All @@ -203,3 +205,4 @@ video {
width: 100%;
height: auto;
}

0 comments on commit 65cfb5c

Please sign in to comment.