mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
13 lines
370 B
CSS
13 lines
370 B
CSS
@supports not (display: flex) {
|
|
}
|
|
|
|
@supports ( box-shadow: 0 0 2px black inset ) or
|
|
( -moz-box-shadow: 0 0 2px black inset ) or
|
|
( -webkit-box-shadow: 0 0 2px black inset ) or
|
|
( -o-box-shadow: 0 0 2px black inset ) {}
|
|
|
|
|
|
@supports ((transition-property: color) or
|
|
(animation-name: foo)) and
|
|
(transform: rotate(10deg)) {}
|