1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-04-21 22:52:42 +02:00

refactor: changed from @-moz-document to @supports -moz-appearance

This commit is contained in:
Igor Guastalla de Lima 2019-03-04 12:26:15 -03:00
parent 4bbb03bee1
commit 8f60952d93

View File

@ -12,13 +12,13 @@
}
@mixin border-image-chrome() {
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
@media all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
border-image-repeat: space;
}
}
@mixin border-image-ff() {
@-moz-document url-prefix() {
@supports (-moz-appearance: meterbar) {
border-image-repeat: stretch;
}
}