1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00
Files
go-discord-bot/client/app/scss/mixins.scss
2018-08-23 00:24:01 -05:00

12 lines
174 B
SCSS

@mixin tinyScreen {
@media only screen and (max-width: 520px) {
@content;
}
}
@mixin smallScreen {
@media only screen and (max-width: 768px) {
@content;
}
}