updated english file (#38482)
This commit is contained in:
@ -24,10 +24,10 @@ Mixins are like functions for CSS. Here is how to write one:
|
|||||||
|
|
||||||
```scss
|
```scss
|
||||||
@mixin box-shadow($x, $y, $blur, $c){
|
@mixin box-shadow($x, $y, $blur, $c){
|
||||||
-webkit-box-shadow: $x, $y, $blur, $c;
|
-webkit-box-shadow: $x $y $blur $c;
|
||||||
-moz-box-shadow: $x, $y, $blur, $c;
|
-moz-box-shadow: $x $y $blur $c;
|
||||||
-ms-box-shadow: $x, $y, $blur, $c;
|
-ms-box-shadow: $x $y $blur $c;
|
||||||
box-shadow: $x, $y, $blur, $c;
|
box-shadow: $x $y $blur $c;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user