From 314889de2a1a43d75e74ce58dc0f44dc035f0b86 Mon Sep 17 00:00:00 2001 From: gnezim Date: Sun, 19 Apr 2026 15:22:00 +0300 Subject: [PATCH] =?UTF-8?q?Rotate=20FlightStatus=20plane=20icon=2090=C2=B0?= =?UTF-8?q?=20to=20point=20right?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Angular's sprite has the plane nose-right, but the inline 24×24 path bundled with FlightStatus is nose-up. Transform-rotate matches the Angular direction without swapping the SVG asset. --- src/ui/flights/FlightStatus.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ui/flights/FlightStatus.scss b/src/ui/flights/FlightStatus.scss index 7989d2fd..4d417b44 100644 --- a/src/ui/flights/FlightStatus.scss +++ b/src/ui/flights/FlightStatus.scss @@ -10,8 +10,11 @@ gap: 2px; } + // Angular's SVG sprite points the plane nose to the right; the inline + // 24×24 path in this component is nose-up, so rotate it 90° to match. &__plane { display: block; + transform: rotate(90deg); } &__label {