Skip to content

Commit 2d26a62

Browse files
committed
FIX: some fixes
1 parent 71b995d commit 2d26a62

File tree

5 files changed

+45
-12
lines changed

5 files changed

+45
-12
lines changed

launcher/public/output.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2715,6 +2715,10 @@ video {
27152715
border-top-width: 2px;
27162716
}
27172717

2718+
.border-t{
2719+
border-top-width: 1px;
2720+
}
2721+
27182722
.border-dashed{
27192723
border-style: dashed;
27202724
}
@@ -3394,6 +3398,26 @@ video {
33943398
background-color: rgb(32 34 37 / var(--tw-bg-opacity));
33953399
}
33963400

3401+
.bg-\[\#36393e\]{
3402+
--tw-bg-opacity: 1;
3403+
background-color: rgb(54 57 62 / var(--tw-bg-opacity));
3404+
}
3405+
3406+
.bg-\[\#2d3035\]{
3407+
--tw-bg-opacity: 1;
3408+
background-color: rgb(45 48 53 / var(--tw-bg-opacity));
3409+
}
3410+
3411+
.bg-\[\#353a3e\]{
3412+
--tw-bg-opacity: 1;
3413+
background-color: rgb(53 58 62 / var(--tw-bg-opacity));
3414+
}
3415+
3416+
.bg-\[\#495056\]{
3417+
--tw-bg-opacity: 1;
3418+
background-color: rgb(73 80 86 / var(--tw-bg-opacity));
3419+
}
3420+
33973421
.bg-gradient-to-b{
33983422
background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
33993423
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
@@ -3934,6 +3958,11 @@ video {
39343958
color: rgb(230 228 228 / var(--tw-text-opacity));
39353959
}
39363960

3961+
.text-amber-200{
3962+
--tw-text-opacity: 1;
3963+
color: rgb(253 230 138 / var(--tw-text-opacity));
3964+
}
3965+
39373966
.placeholder-gray-400\/70::-webkit-input-placeholder{
39383967
color: rgb(156 163 175 / 0.7);
39393968
}

launcher/src/components/UI/node-page/components/logs/LogBody.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div
3-
class="w-full h-full col-start-1 col-span-full row-start-2 row-end-12 grid grid-cols-24 grid-rows-12 bg-[#263238]"
3+
class="w-full h-full col-start-1 col-span-full row-start-2 row-end-12 grid grid-cols-24 grid-rows-12 bg-[#2d3035]"
44
>
55
<LogSidebar />
66
<div
@@ -10,13 +10,13 @@
1010
v-for="(log, index) in limitedLogs"
1111
:key="index"
1212
:class="`w-full h-full min-h-11 max-h-12 flex justify-start items-center gap-x-2 px-1 py-2 relative cursor-pointer text-[#e6e4e4] ${
13-
index % 2 === 0 ? 'bg-[#2f3337] ' : 'bg-[#202225]'
13+
index % 2 === 0 ? 'bg-[#495056] ' : 'bg-[#202225]'
1414
} overflow-y-hidden overflow-x-scroll whitespace-pre text-nowrap`"
1515
@click="copy(log)"
1616
@mouseenter="hoveredLogIndex = index"
1717
@mouseleave="hoveredLogIndex = null"
1818
>
19-
<span class="text-md font-semibold text-red-500">#{{ logsList.length - index }}</span>
19+
<span class="text-sm font-semibold text-gray-400">#{{ logsList.length - index }}</span>
2020
<span class="text-sm font-semibold">{{ log }}</span>
2121
<img
2222
v-if="hoveredLogIndex === index"

launcher/src/components/UI/node-page/components/logs/LogFooter.vue

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<template>
2-
<div class="w-full h-full col-start-1 col-span-full row-start-12 row-span-1 grid grid-cols-12 bg-[#263238] p-1">
2+
<div
3+
class="w-full h-full col-start-1 col-span-full row-start-12 row-span-1 grid grid-cols-12 bg-[#2d3035] border-t border-gray-500 p-1"
4+
>
35
<div class="w-full h-full col-start-1 col-end-6 flex justify-center items-center space-x-2">
46
<span class="text-sm text-gray-400 font-semibold">Service ID:</span>
5-
<span class="text-gray-200 text-sm font-semibold">
7+
<span class="text-amber-200 text-sm font-semibold">
68
{{ client?.config?.serviceID }}
79
</span>
810
</div>
@@ -16,9 +18,9 @@
1618
/>
1719
</div>
1820
<div
19-
class="w-full h-full col-start-8 col-span-full flex justify-center items-center border border-gray-400 rounded-md"
21+
class="w-full h-full col-start-8 col-span-full flex justify-center items-center border border-gray-400 rounded-md bg-gray-200"
2022
>
21-
<div class="w-8 flex justify-evenly items-center px-1 relative bg-[#263238] rounded-sm">
23+
<div class="w-8 flex justify-evenly items-center px-1 relative bg-gray-200 rounded-sm">
2224
<svg
2325
aria-hidden="true"
2426
class="w-5 h-5 text-gray-500 dark:text-gray-400"
@@ -36,7 +38,7 @@
3638
<input
3739
v-model="nodeStore.searchLogs"
3840
type="search"
39-
class="z-10 text-gray-400 text-sm rounded-full block w-full px-2 py-1 placeholder-gray-500 bg-transparent"
41+
class="z-10 text-gray-700 text-sm rounded-full block w-full px-2 py-1 placeholder-gray-500 bg-transparent"
4042
placeholder="Search"
4143
/>
4244
</div>

launcher/src/components/UI/node-page/components/logs/LogHeader.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<template>
2-
<div class="w-full h-full col-start-1 col-span-full row-start-1 row-end-2 grid grid-cols-12 bg-[#263238]">
2+
<div
3+
class="w-full h-full col-start-1 col-span-full row-start-1 row-end-2 grid grid-cols-12 bg-[#2d3035] border-b border-gray-500"
4+
>
35
<div class="w-full h-full col-start-2 col-end-5 flex justify-start items-center space-x-2">
46
<img class="w-7 h-7" :src="client.sIcon" alt="Service Icon" @mousedown.prevent />
57
<div class="text-gray-200 text-lg font-semibold">{{ client.name }}</div>
68
</div>
79
<div class="w-full h-full col-start-5 col-end-8 flex justify-center items-center space-x-2">
810
<span class="text-sm text-[#dee3e3] font-semibold">Category:</span>
9-
<span class="text-amber-300 text-md font-semibold capitalize">
11+
<span class="text-amber-200 text-md font-semibold capitalize">
1012
{{ client?.category }}
1113
</span>
1214
</div>
1315
<div class="w-full h-full col-start-8 col-end-11 flex justify-center items-center space-x-2">
1416
<span class="text-sm text-[#dee3e3] font-semibold">Version:</span>
15-
<span class="text-amber-300 text-md font-semibold">
17+
<span class="text-amber-200 text-md font-semibold">
1618
{{ client?.config?.imageVersion }}
1719
</span>
1820
</div>

launcher/src/components/UI/staking-page/components/list/ListBody.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ watch(
205205
() => stakingStore.keys.length,
206206
async (newLength, oldLength) => {
207207
if (newLength !== oldLength) {
208-
removeDuplicatedDoppelgangerKeys();
209208
await listKeys();
209+
removeDuplicatedDoppelgangerKeys();
210210
}
211211
}
212212
);

0 commit comments

Comments
 (0)