From b8b8cc57cdd302918947746452ae00177384853e Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 14 Jan 2023 20:22:41 +0800 Subject: [PATCH] Try rotate3d instead Got to squeeze out that GPU power yo --- src/app.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.css b/src/app.css index c5e88541..32251022 100644 --- a/src/app.css +++ b/src/app.css @@ -725,7 +725,7 @@ button.carousel-dot[disabled].active { transition: transform 0.3s ease-in-out; } #compose-button[hidden] .icon { - transform: rotateY(180deg); + transform: rotate3d(0, 1, 0, 180deg); } #compose-button:is(:hover, :focus) { background-color: var(--button-bg-color);