Fix small UI issue

This commit is contained in:
liangping 2021-08-06 23:44:43 +08:00
parent 505bc90830
commit 48454df781
5 changed files with 13 additions and 9 deletions

View File

@ -5,7 +5,7 @@
"cosmos": "Cosmos Hub", "cosmos": "Cosmos Hub",
"kava": "Kava", "kava": "Kava",
"akash": "Akash Decloud", "akash": "Akash Decloud",
"iris": "Iris Hub", "iris": "IRIS Hub",
"crypto": "Crypto.com", "crypto": "Crypto.com",
"osmosis": "Osmosis", "osmosis": "Osmosis",

View File

@ -20,7 +20,7 @@
/> />
</b-avatar> </b-avatar>
</b-media-aside> </b-media-aside>
<b-media-body> <b-media-body class="text-truncate">
<h6 class="mb-0"> <h6 class="mb-0">
Account Address Account Address
</h6> </h6>
@ -43,7 +43,7 @@
/> />
</b-avatar> </b-avatar>
</b-media-aside> </b-media-aside>
<b-media-body> <b-media-body class="text-truncate">
<h6 class="mb-0"> <h6 class="mb-0">
Validator Address Validator Address
</h6> </h6>
@ -66,7 +66,7 @@
/> />
</b-avatar> </b-avatar>
</b-media-aside> </b-media-aside>
<b-media-body> <b-media-body class="text-truncate">
<h6 class="mb-0"> <h6 class="mb-0">
Consensus Public Address Consensus Public Address
</h6> </h6>
@ -74,7 +74,7 @@
</b-media-body> </b-media-body>
</b-media> </b-media>
<b-media <b-media
class="mb-1" class="mb-1 text-truncate"
no-body no-body
> >
<b-media-aside class="mr-1"> <b-media-aside class="mr-1">

View File

@ -25,11 +25,13 @@
</div> </div>
<div class="d-flex flex-wrap"> <div class="d-flex flex-wrap">
<b-button <b-button
size="sm"
variant="primary" variant="primary"
> >
Delegate Delegate
</b-button> </b-button>
<b-button <b-button
size="sm"
variant="outline-danger" variant="outline-danger"
class="ml-1" class="ml-1"
> >
@ -40,7 +42,7 @@
</div> </div>
<!-- User Stats --> <!-- User Stats -->
<div class="d-flex align-items-center mt-2"> <div class="d-flex flex-wrap align-items-center mt-2">
<div class="d-flex align-items-center mr-2"> <div class="d-flex align-items-center mr-2">
<b-avatar <b-avatar
variant="light-primary" variant="light-primary"
@ -228,7 +230,7 @@
<b-row> <b-row>
<b-col> <b-col>
<b-card title="Uptime"> <b-card title="Uptime">
<b-card-body> <b-card-body class="border-top">
<b-button <b-button
v-for="(b,i) in blocks" v-for="(b,i) in blocks"
:key="i" :key="i"

View File

@ -110,7 +110,7 @@ export default {
}) })
}) })
this.$http.getSlashingParameters().then(res => { this.$http.getSlashingParameters().then(res => {
this.slasing = this.normalize(res, 'Slasing Parameters') this.slasing = this.normalize(res, 'Slashing Parameters')
}) })
const selected = this.$route.params.chain const selected = this.$route.params.chain

View File

@ -122,7 +122,9 @@ export default {
border-top-style: double; border-top-style: double;
} }
#message table.table-hover tr td:hover { #message table.table-hover tr td:hover {
border-width: 1px; border-style: solid;
border-color: green;
border: double; border: double;
border-radius: 0.5px; border-radius: 0.5px;
} }