grid push

This commit is contained in:
chimchooree
2022-07-18 00:26:24 -05:00
parent 35b8d6e233
commit 1c8c4a72c5
4 changed files with 17 additions and 11 deletions
+7 -4
View File
@@ -1,15 +1,18 @@
.content-grid {
margin: auto;
width: 1fr;
color: white;
margin: auto;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-template-columns: repeat(auto-fit, 200px);
grid-column-gap: 0px;
grid-row-gap: 0px;
margin: auto;
border: 2px solid #C0AAC0;
}
.gallery img {
height: 200px;}
height: 200px;
border-radius: 5%;
}