diff --git a/launcher/public/animation/setup/heartcore.gif b/launcher/public/animation/setup/heartcore.gif new file mode 100644 index 000000000..36f3c83a2 Binary files /dev/null and b/launcher/public/animation/setup/heartcore.gif differ diff --git a/launcher/public/output.css b/launcher/public/output.css index dd9b9df6b..ea80a8c68 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.4 | MIT License | https://tailwindcss.com +! tailwindcss v3.4.6 | MIT License | https://tailwindcss.com */ /* @@ -807,10 +807,6 @@ video { top: -90px; } -.bottom-0{ - bottom: 0px; -} - .bottom-0\.5{ bottom: 0.125rem; } @@ -2382,11 +2378,6 @@ video { flex: none; } -.flex-shrink{ - -ms-flex-negative: 1; - flex-shrink: 1; -} - .flex-shrink-0{ -ms-flex-negative: 0; flex-shrink: 0; @@ -2708,11 +2699,6 @@ video { flex-direction: column; } -.flex-wrap{ - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - .place-content-center{ place-content: center; } @@ -5344,11 +5330,6 @@ 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/base-header/components/tabs/SingleTab.vue b/launcher/src/components/UI/base-header/components/tabs/SingleTab.vue index 29b795f2e..94e085a7b 100644 --- a/launcher/src/components/UI/base-header/components/tabs/SingleTab.vue +++ b/launcher/src/components/UI/base-header/components/tabs/SingleTab.vue @@ -2,15 +2,20 @@ {{ props.tab.page }} diff --git a/launcher/src/components/UI/staking-page/components/list/panels/ValidatorPanel.vue b/launcher/src/components/UI/staking-page/components/list/panels/ValidatorPanel.vue index 555c445f9..bb3be9a4a 100644 --- a/launcher/src/components/UI/staking-page/components/list/panels/ValidatorPanel.vue +++ b/launcher/src/components/UI/staking-page/components/list/panels/ValidatorPanel.vue @@ -7,13 +7,13 @@ v-for="service in runningValidators" :key="service.config?.serviceID" class="col-span-1 colst w-24 h-full flex justify-start items-center hover:bg-slate-300 rounded-sm space-x-1 cursor-pointer transition-all duration-150 px-1" - :class="getBgColor(service.setupId).background" + :class="getBgColor(service.setupId)?.background" @click="pickValidator(service)" > Service Icon {{ service.name }} diff --git a/launcher/src/components/UI/staking-page/components/list/rows/KeyRow.vue b/launcher/src/components/UI/staking-page/components/list/rows/KeyRow.vue index 0273ab485..ee67e2f7a 100644 --- a/launcher/src/components/UI/staking-page/components/list/rows/KeyRow.vue +++ b/launcher/src/components/UI/staking-page/components/list/rows/KeyRow.vue @@ -2,12 +2,18 @@ import { computed } from 'vue';