1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00
keeweb/app/styles/base/_media.scss

18 lines
263 B
SCSS
Raw Normal View History

2015-10-24 11:15:54 +02:00
@mixin tablet {
2019-08-16 23:05:39 +02:00
@media (max-width: #{$tablet-width}) {
@content;
}
2015-10-24 11:15:54 +02:00
}
@mixin mobile {
2019-08-16 23:05:39 +02:00
@media (max-width: #{$mobile-width}) {
@content;
}
2015-10-24 11:15:54 +02:00
}
2015-10-26 22:07:19 +01:00
@mixin nomobile {
2019-08-16 23:05:39 +02:00
@media (min-width: #{$mobile-width + 1}) {
@content;
}
2015-10-26 22:07:19 +01:00
}