mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
14 lines
250 B
SCSS
14 lines
250 B
SCSS
.archive-grid {
|
|
display: grid;
|
|
grid-gap: 5px;
|
|
grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
|
|
|
|
@include smallScreen() {
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
}
|
|
|
|
&__item {
|
|
height: 300px;
|
|
}
|
|
}
|