Skip to content

Commit

Permalink
add text ellipsis
Browse files Browse the repository at this point in the history
  • Loading branch information
J0ris-K committed Nov 20, 2024
1 parent de56a5d commit 04484a2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions @xen-orchestra/lite/src/views/pool/PoolNetworkView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<div>
<div class="typo p3-regular content-details">
<div>{{ $t('uuid') }}</div>
<div>{{ selectedNetwork?.uuid }}</div>
<div class="text-ellipsis">{{ selectedNetwork?.uuid }}</div>
<UiButtonIcon accent="info" size="medium" :icon="faCopy" />
</div>
<div class="typo p3-regular content-details">
Expand Down Expand Up @@ -204,6 +204,7 @@ const selectNetworkToSidebar = (network: any) => {
.network-view-container {
display: flex;
}
.card-wrapper {
display: flex;
flex-direction: column;
Expand All @@ -217,12 +218,10 @@ const selectNetworkToSidebar = (network: any) => {
gap: 2.4rem;
}
}
.ui-info {
align-items: center;
}
.checkbox-header {
width: 4.8rem;
}
.card-container {
display: flex;
Expand Down

0 comments on commit 04484a2

Please sign in to comment.