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)