Add styling for horizontally mirrored button

This commit is contained in:
Ethan Girouard 2024-05-10 20:23:23 -04:00
parent 28ff98ab32
commit 2b9d849578
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

View File

@ -82,6 +82,14 @@
}
button {
.hmirror {
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.controlbtn {
color: $text-controls-color;
}