Files
PocketSharp/PocketSharp.Website/Assets/Stylesheets/Mixins/_respond.scss
T

6 lines
108 B
SCSS
Raw Normal View History

2013-07-09 21:25:10 +02:00
@mixin respond($size)
{
$query: "only screen and (max-width: #{$size})";
@media #{$query} { @content; }
}