TelegramPWA/src/components/right/GifSearch.scss
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

24 lines
387 B
SCSS

.GifSearch {
height: 100%;
padding: 0.25rem;
.gif-container {
height: 100%;
overflow: auto;
&.grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-auto-rows: 6.25rem;
grid-gap: 0.25rem;
grid-auto-flow: dense;
}
}
.helper-text {
color: var(--color-text-meta);
margin-top: 2rem;
text-align: center;
}
}