Skip to content

Commit 68146a7

Browse files
authored
fix: responsive (#55)
1 parent a860e98 commit 68146a7

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

webui/src/components/Manage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<v-btn
33
variant="tonal"
44
color="primary"
5-
block
65
:append-icon="mdiChevronDown"
76
:disabled="loading"
7+
:width="230"
88
>
99
Manage
1010
<v-menu activator="parent" bottom scrim>

webui/src/components/Node.vue

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div v-if="nodeStatus">
33
<v-progress-linear indeterminate v-show="loading" class="mb-n1" />
44
<v-container class="pl-5" fluid>
5-
<v-row justify="center">
5+
<v-row>
66
<v-col cols="12" sm="6" md="3">
77
<div class="py-1">
88
<v-badge floating dot class="mx-3 mb-1" :color="createdColor" />
@@ -113,7 +113,13 @@
113113
</div>
114114
<div>Online Stake</div>
115115
</v-col>
116-
<v-col cols="6" md="3" class="text-center">
116+
<v-col
117+
cols="12"
118+
sm="6"
119+
md="3"
120+
class="text-center"
121+
align-self="center"
122+
>
117123
<div class="text-h4">
118124
{{
119125
partDetails?.votes == null

0 commit comments

Comments
 (0)