From 719f4efad3d69c58ef7a2815be262364684f8de7 Mon Sep 17 00:00:00 2001 From: itsrubberduck Date: Sat, 21 Feb 2026 00:10:37 +0100 Subject: [PATCH] style(pfd): align core instrument visuals with Airbus reference --- .../flightlab/pfd/PfdAltitudeTape.vue | 41 ++++++++++++------- .../flightlab/pfd/PfdAttitudeIndicator.vue | 20 ++++----- .../flightlab/pfd/PfdHeadingIndicator.vue | 23 +++++++---- app/components/flightlab/pfd/PfdSpeedTape.vue | 41 ++++++++++++------- .../flightlab/pfd/PfdVerticalSpeed.vue | 16 ++++---- 5 files changed, 88 insertions(+), 53 deletions(-) diff --git a/app/components/flightlab/pfd/PfdAltitudeTape.vue b/app/components/flightlab/pfd/PfdAltitudeTape.vue index ab9bda7..d1f767f 100644 --- a/app/components/flightlab/pfd/PfdAltitudeTape.vue +++ b/app/components/flightlab/pfd/PfdAltitudeTape.vue @@ -40,6 +40,10 @@ const readoutText = computed(() => Math.round(props.altitude).toString()) const readoutBoxHeight = 24 const readoutBoxWidth = computed(() => props.width - 8) +const tapeInnerX = 2 +const tapeInnerY = 2 +const tapeInnerWidth = computed(() => props.width - 4) +const tapeInnerHeight = computed(() => props.height - 4)