Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: disabled devnet #2135

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions launcher/public/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -4327,6 +4327,11 @@ video {
background-color: rgb(63 63 70 / var(--tw-bg-opacity));
}

.bg-teal-900{
--tw-bg-opacity: 1;
background-color: rgb(19 78 74 / var(--tw-bg-opacity));
}

.bg-opacity-80{
--tw-bg-opacity: 0.8;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@
</div>

<div
class="col-start-1 col-span-full row-start-14 row-span-full w-full h-full bg-[#151618] rounded-md flex flex-col justify-between items-center p-1 shadow-sm shadow-black active:shadow-none border border-gray-700"
class="col-start-1 col-span-full row-start-14 row-span-full w-full h-full bg-[#151618] rounded-md flex flex-col justify-between items-center p-1 shadow-sm shadow-black border border-gray-700"
>
<span class="text-2xs text-center text-gray-100 font-semibold font-sans uppercase mt-1">Custom Network</span>

<div
class="w-full h-8 bg-teal-700 rounded-sm text-center p-1 cursor-pointer hover:bg-teal-900 transition-all duration-100"
:class="{ 'cursor-not-allowed pointer-events-none opacity-40': isDisabled }"
@click="createDevnet"
>
<span class="text-sm text-gray-200">Setup Devnet</span>
Expand All @@ -40,10 +41,12 @@
</template>

<script setup>
import { ref } from "vue";
import { useNodeManage } from "../../../../../store/nodeManage";

const emit = defineEmits(["getNetwork", "createDevnet"]);
const manageStore = useNodeManage();
const isDisabled = ref(true);

const getNetwork = (network) => {
emit("getNetwork", network);
Expand Down
Loading