Compare commits

..

2 commits

Author SHA1 Message Date
d396480e14 Seperate lines 2024-11-14 02:21:26 -06:00
af8cd4e5fb Use flex instead of grids 2024-11-14 02:16:31 -06:00

View file

@ -92,16 +92,22 @@ h3 {
@media screen and (min-width: 650px) {
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.grid-child {
flex: 0 0 calc(50% - 5px);
margin: auto;
align-content: center;
/* border: 2px white solid; */
}
.grid-child > div > .chip {
display: table;
margin: 5px auto;
}
}
.chip {