Skip to content

Commit

Permalink
Merge pull request #1620 from threefoldtech/development_313_update_tw…
Browse files Browse the repository at this point in the history
…in_ui

fix responsive twin page issue
  • Loading branch information
zaelgohary authored Dec 10, 2023
2 parents 99a8b64 + 99efb1a commit bfa446c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/playground/src/dashboard/twin_view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<v-card>
<v-list class="custom-list">
<v-row>
<v-col cols="1" sm="2" class="column-style my-4">
<v-col cols="1" sm="2" class="column-style my-4" style="min-width: fit-content">
<input-tooltip
tooltip="Your unique identifier for your twin on the ThreeFold chain."
:align-center="true"
Expand Down Expand Up @@ -64,12 +64,14 @@
<v-list-item class="mr-auto"> Relay </v-list-item>
</input-tooltip>
</v-col>
<v-col cols="1" sm="10" class="my-4">
<v-col class="my-4">
<v-list-item> {{ profileManager.profile?.twinId.toString() }} </v-list-item>
<v-divider></v-divider>
<v-list-item>
<div style="display: flex; justify-content: space-between; align-items: center">
<span>{{ profileManager.profile?.address }}</span>
<div class="pr-2" style="overflow: hidden; word-wrap: normal">
<span>{{ profileManager.profile?.address }}</span>
</div>
<v-icon @click="copy(profileManager.profile?.address as string)"> mdi-content-copy </v-icon>
</div>
</v-list-item>
Expand Down

0 comments on commit bfa446c

Please sign in to comment.