Files
30-seconds-of-code/node_modules/postcss-discard-overridden/src/__tests__/fixtures/counter-style.post.css
2019-08-20 15:52:05 +02:00

23 lines
343 B
CSS

@counter-style my-alpha {
system: fixed;
symbols: ;
suffix: " ";
}
@media (max-width: 400px) {
@supports (display: flex) {
@counter-style my-alpha {
system: fixed;
symbols: a b c;
suffix: " ";
}
}
@counter-style my-alpha {
system: fixed;
symbols: ;
suffix: " ";
}
}