diff --git a/launcher/public/output.css b/launcher/public/output.css index ea80a8c68..dd9b9df6b 100755 --- a/launcher/public/output.css +++ b/launcher/public/output.css @@ -1,7 +1,7 @@ @import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"); /* -! tailwindcss v3.4.6 | MIT License | https://tailwindcss.com +! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com */ /* @@ -807,6 +807,10 @@ video { top: -90px; } +.bottom-0{ + bottom: 0px; +} + .bottom-0\.5{ bottom: 0.125rem; } @@ -2378,6 +2382,11 @@ video { flex: none; } +.flex-shrink{ + -ms-flex-negative: 1; + flex-shrink: 1; +} + .flex-shrink-0{ -ms-flex-negative: 0; flex-shrink: 0; @@ -2699,6 +2708,11 @@ video { flex-direction: column; } +.flex-wrap{ + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} + .place-content-center{ place-content: center; } @@ -5330,6 +5344,11 @@ html body { left: 2px; } +.after\:top-0::after{ + content: var(--tw-content); + top: 0px; +} + .after\:top-0\.5::after{ content: var(--tw-content); top: 0.125rem; diff --git a/launcher/src/components/UI/the-control/AmsterdamComponent.vue b/launcher/src/components/UI/the-control/AmsterdamComponent.vue index 8053a97f5..539c977aa 100755 --- a/launcher/src/components/UI/the-control/AmsterdamComponent.vue +++ b/launcher/src/components/UI/the-control/AmsterdamComponent.vue @@ -37,7 +37,7 @@ }" @mouseenter=" cursorLocation = `the current epoch: ${ - currentResult.currentEpoch + currentResult?.currentEpoch || 'N/A' } and the slot number is ${n.slotNumber === 0 ? 'N/A' : n.slotNumber}` " @mouseleave="cursorLocation = ''" @@ -47,7 +47,7 @@