blob: b0ce9896f551977f713ea9590a832fb68d375e32 (
plain)
1
2
3
4
5
6
7
8
9
|
// ==========================================================================
// Breakpoints
// ==========================================================================
@screen-sm: 480px;
@screen-md: 768px;
@mq-sm: ~"only screen and (min-width: @{screen-sm}) ";
@mq-md: ~"only screen and (min-width: @{screen-md}) ";
|