@taiga-ui/core
Version:
Core library for creating Angular components and applications using Taiga UI
24 lines (20 loc) • 419 B
text/less
.firefox-only(@ruleset) {
@supports (-moz-appearance: none) {
@ruleset();
}
}
.safari-only(@ruleset) {
@supports (-webkit-hyphens: none) {
@ruleset();
}
}
.ios-only(@ruleset) {
@supports (-webkit-touch-callout: none) {
@ruleset();
}
}
.chrome-only(@ruleset) {
@supports (not (-moz-appearance: none)) and (not (-webkit-hyphens: none)) {
@ruleset();
}
}