blob: ed078e2158c3e21af7bd44a0718d72724438a826 (
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}) ';
|