Compare commits
2 commits
f4a600e7c3
...
d396480e14
Author | SHA1 | Date | |
---|---|---|---|
d396480e14 | |||
af8cd4e5fb |
1 changed files with 9 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue