mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-27 08:45:28 +01:00
Add missing mixins
This commit is contained in:
parent
d0f047d88a
commit
26a865bb50
1 changed files with 7 additions and 0 deletions
7
src/styles/_mixins.scss
Normal file
7
src/styles/_mixins.scss
Normal file
|
@ -0,0 +1,7 @@
|
|||
@mixin vendor-prefix($name, $argument) {
|
||||
-webkit-#{$name}: #{$argument};
|
||||
-ms-#{$name}: #{$argument};
|
||||
-moz-#{$name}: #{$argument};
|
||||
-o-#{$name}: #{$argument};
|
||||
#{$name}: #{$argument};
|
||||
}
|
Loading…
Reference in a new issue