2025-10-26 11:37:47 +01:00
|
|
|
@use "../../hippie-style/hippie";
|
|
|
|
|
|
2025-05-14 19:00:13 +02:00
|
|
|
#grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
|
grid-auto-rows: minmax(64px, auto);
|
2025-10-26 11:37:47 +01:00
|
|
|
margin-inline: hippie.$space_small;
|
2025-05-14 19:00:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grid>div {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: aquamarine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#grid>div:first-child {
|
|
|
|
|
grid-column: 1 / 3;
|
|
|
|
|
background-color: violet;
|
|
|
|
|
}
|