diff --git a/launcher/public/output.css b/launcher/public/output.css index 5ea57e934..9d05d0128 100755 --- a/launcher/public/output.css +++ b/launcher/public/output.css @@ -1391,6 +1391,10 @@ video { grid-row-end: 9; } +.row-end-1{ + grid-row-end: 1; +} + .float-right{ float: right; } @@ -1863,6 +1867,14 @@ video { height: 100vh; } +.h-\[180px\]{ + height: 180px; +} + +.h-\[35px\]{ + height: 35px; +} + .max-h-10{ max-height: 2.5rem; } @@ -4123,6 +4135,11 @@ video { background-color: rgb(63 63 70 / var(--tw-bg-opacity)); } +.bg-\[\#101111\]{ + --tw-bg-opacity: 1; + background-color: rgb(16 17 17 / var(--tw-bg-opacity)); +} + .bg-opacity-80{ --tw-bg-opacity: 0.8; } @@ -5026,6 +5043,11 @@ video { --tw-shadow: var(--tw-shadow-colored); } +.shadow-\[\#101111\]{ + --tw-shadow-color: #101111; + --tw-shadow: var(--tw-shadow-colored); +} + .outline-none{ outline: 2px solid transparent; outline-offset: 2px; @@ -5780,6 +5802,16 @@ html body { background-color: rgb(4 47 46 / var(--tw-bg-opacity)); } +.hover\:bg-\[\#274d4d\]:hover{ + --tw-bg-opacity: 1; + background-color: rgb(39 77 77 / var(--tw-bg-opacity)); +} + +.hover\:bg-\[\#407d7d\]:hover{ + --tw-bg-opacity: 1; + background-color: rgb(64 125 125 / var(--tw-bg-opacity)); +} + .hover\:bg-opacity-10:hover{ --tw-bg-opacity: 0.1; } diff --git a/launcher/src/components/UI/edit-page/components/modals/devnet/components/AddAllocation.vue b/launcher/src/components/UI/edit-page/components/modals/devnet/components/AddAllocation.vue index e3058b355..b97ffe192 100644 --- a/launcher/src/components/UI/edit-page/components/modals/devnet/components/AddAllocation.vue +++ b/launcher/src/components/UI/edit-page/components/modals/devnet/components/AddAllocation.vue @@ -1,3 +1,90 @@ + + diff --git a/launcher/src/store/setups.js b/launcher/src/store/setups.js index 3d2838844..bb3a804ec 100644 --- a/launcher/src/store/setups.js +++ b/launcher/src/store/setups.js @@ -19,6 +19,7 @@ export const useSetups = defineStore("setups", { services: [], }, devnetButtonDisabled: true, + genesisChanged: false, isDevnetSetupModalActive: false, currentStep: 1, uploadedGenesisFile: null,