Skip to content

Commit

Permalink
fix(css): correct syntax for scale related css functions (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
skyclouds2001 authored Dec 17, 2024
1 parent 424e985 commit 955ef5b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions css/functions.json
Original file line number Diff line number Diff line change
Expand Up @@ -617,39 +617,39 @@
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/saturate"
},
"scale()": {
"syntax": "scale( <number> , <number>? )",
"syntax": "scale( [ <number> | <percentage> ]#{1,2} )",
"groups": [
"CSS Transforms"
],
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scale"
},
"scale3d()": {
"syntax": "scale3d( <number> , <number> , <number> )",
"syntax": "scale3d( [ <number> | <percentage> ]#{3} )",
"groups": [
"CSS Transforms"
],
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scale3d"
},
"scaleX()": {
"syntax": "scaleX( <number> )",
"syntax": "scaleX( [ <number> | <percentage> ] )",
"groups": [
"CSS Transforms"
],
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleX"
},
"scaleY()": {
"syntax": "scaleY( <number> )",
"syntax": "scaleY( [ <number> | <percentage> ] )",
"groups": [
"CSS Transforms"
],
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleY"
},
"scaleZ()": {
"syntax": "scaleZ( <number> )",
"syntax": "scaleZ( [ <number> | <percentage> ] )",
"groups": [
"CSS Transforms"
],
Expand Down

0 comments on commit 955ef5b

Please sign in to comment.