thingy
This commit is contained in:
parent
1a357b8747
commit
0d9565bdff
|
@ -39,7 +39,7 @@
|
|||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
|
@ -227,11 +227,13 @@ header {
|
|||
.app-grid {
|
||||
display: grid;
|
||||
align-items: center;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
grid-template-rows: auto auto auto;
|
||||
grid-gap: 1rem;
|
||||
}
|
||||
|
||||
.app-grid__item {
|
||||
max-width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 1rem;
|
||||
|
|
Loading…
Reference in New Issue