mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
12 lines
174 B
SCSS
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;
|
|
}
|
|
}
|