diff --git a/.stylelintrc.json b/.stylelintrc.json index 457fff13bd005..d3e510e154525 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -4,6 +4,12 @@ "no-descending-specificity": null, "color-function-notation": null, "number-max-precision": 5, + "value-keyword-case": [ + "lower", + { + "camelCaseSvgKeywords": true + } + ], "selector-class-pattern": [ "^[A-Za-z0-9_-]+(__[A-Za-z0-9_-]+)?(--[A-Za-z0-9-]+)?$", { diff --git a/frontend/src/styles/utilities.scss b/frontend/src/styles/utilities.scss index 221a9dc2c11e1..c0f6f1c0442cc 100644 --- a/frontend/src/styles/utilities.scss +++ b/frontend/src/styles/utilities.scss @@ -413,7 +413,7 @@ $decorations: underline, overline, line-through, no-underline; } .decoration-current { - text-decoration-color: currentcolor; + text-decoration-color: currentColor; } .decoration-transparent { @@ -448,7 +448,7 @@ $decorations: underline, overline, line-through, no-underline; } .text-current { - color: currentcolor; + color: currentColor; } @each $name, $hex in $colors {