Fix validation error in _rotated-flipped.scss

HTML/CSS validators give an error due to the fact that "none" was used in a css transform, changing non to 0deg fixes this issue.
This commit is contained in:
Alexander Volkers 2023-10-03 13:55:56 +02:00 committed by GitHub
parent f0c25837a3
commit 78ead46200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -27,5 +27,5 @@
}
.#{$fa-css-prefix}-rotate-by {
transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, none));
transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, 0deg));
}