diff --git a/launcher/public/output.css b/launcher/public/output.css index 61bfc22ff..b7e7a38ca 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.3 | MIT License | https://tailwindcss.com */ /* @@ -2571,6 +2571,11 @@ video { appearance: none; } +.auto-cols-max{ + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; +} + .grid-flow-row{ grid-auto-flow: row; } @@ -2881,6 +2886,12 @@ video { margin-bottom: calc(1px * var(--tw-space-y-reverse)); } +.space-y-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + .divide-x > :not([hidden]) ~ :not([hidden]){ --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); diff --git a/launcher/src/components/UI/custom-installation/components/CustomFooter.vue b/launcher/src/components/UI/custom-installation/components/CustomFooter.vue index 262af0f68..967d48a5f 100644 --- a/launcher/src/components/UI/custom-installation/components/CustomFooter.vue +++ b/launcher/src/components/UI/custom-installation/components/CustomFooter.vue @@ -26,7 +26,6 @@ const props = defineProps({ }, }); -console.log("props", props.disabledBtn); const emit = defineEmits(["prepareStereum"]); const prepareStereum = () => { diff --git a/launcher/src/components/UI/custom-installation/components/CustomPath.vue b/launcher/src/components/UI/custom-installation/components/CustomPath.vue index f91fa0df2..3707af187 100755 --- a/launcher/src/components/UI/custom-installation/components/CustomPath.vue +++ b/launcher/src/components/UI/custom-installation/components/CustomPath.vue @@ -1,25 +1,21 @@