File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
src/components/UI/edit-page/components/drawer Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -4327,6 +4327,11 @@ video {
4327
4327
background-color : rgb (63 63 70 / var (--tw-bg-opacity ));
4328
4328
}
4329
4329
4330
+ .bg-teal-900 {
4331
+ --tw-bg-opacity : 1 ;
4332
+ background-color : rgb (19 78 74 / var (--tw-bg-opacity ));
4333
+ }
4334
+
4330
4335
.bg-opacity-80 {
4331
4336
--tw-bg-opacity : 0.8 ;
4332
4337
}
Original file line number Diff line number Diff line change 25
25
</div >
26
26
27
27
<div
28
- 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"
28
+ 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"
29
29
>
30
30
<span class =" text-2xs text-center text-gray-100 font-semibold font-sans uppercase mt-1" >Custom Network</span >
31
31
32
32
<div
33
33
class =" w-full h-8 bg-teal-700 rounded-sm text-center p-1 cursor-pointer hover:bg-teal-900 transition-all duration-100"
34
+ :class =" { 'cursor-not-allowed pointer-events-none opacity-40': isDisabled }"
34
35
@click =" createDevnet"
35
36
>
36
37
<span class =" text-sm text-gray-200" >Setup Devnet</span >
40
41
</template >
41
42
42
43
<script setup>
44
+ import { ref } from " vue" ;
43
45
import { useNodeManage } from " ../../../../../store/nodeManage" ;
44
46
45
47
const emit = defineEmits ([" getNetwork" , " createDevnet" ]);
46
48
const manageStore = useNodeManage ();
49
+ const isDisabled = ref (true );
47
50
48
51
const getNetwork = (network ) => {
49
52
emit (" getNetwork" , network);
You can’t perform that action at this time.
0 commit comments