@atlassian/aui
Version:
Atlassian User Interface library
18 lines (15 loc) • 364 B
text/less
.responsive-max-width(@maxWidth; @rules) {
@media all and (max-width: @maxWidth) {
@rules();
}
}
.responsive-max-height(@maxHeight; @rules) {
@media all and (max-height: @maxHeight) {
@rules();
}
}
.ie11(@rules) {
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
@rules();
}
}