|
@ -3,22 +3,22 @@ |
|
|
**/ |
|
|
**/ |
|
|
|
|
|
|
|
|
.choose(@type, @style) when (@type=xs){ |
|
|
.choose(@type, @style) when (@type=xs){ |
|
|
@media (max-width: 768px){ |
|
|
@media (max-width: 767.9999px){ |
|
|
@style(); |
|
|
@style(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
.choose(@type, @style) when (@type=sm){ |
|
|
.choose(@type, @style) when (@type=sm){ |
|
|
@media (max-width: 920px){ |
|
|
@media (min-width: 768px) and (max-width: 991.9999px){ |
|
|
@style(); |
|
|
@style(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
.choose(@type, @style) when (@type=md){ |
|
|
.choose(@type, @style) when (@type=md){ |
|
|
@media (max-width: 1200px){ |
|
|
@media (min-width: 992px) and (max-width: 1199.9999px) { |
|
|
@style(); |
|
|
@style(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
.choose(@type, @style) when (@type=lg){ |
|
|
.choose(@type, @style) when (@type=lg){ |
|
|
@media (max-width: 1366px){ |
|
|
@media (min-width: 1200px) { |
|
|
@style(); |
|
|
@style(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|