Skip to content

Commit d42783b

Browse files
committed
Separate tool name and description vertically
1 parent ca05783 commit d42783b

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

client/src/components/Panels/UserToolPanel.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,14 @@ function newTool(toolUuid?: string) {
112112
:active="tool.uuid === currentItemId">
113113
<div class="overflow-auto w-100" @click="() => cardClicked(tool)">
114114
<Heading bold size="text" icon="fa-wrench">
115-
<span class="truncate-n-lines three-lines">
116-
{{ tool.representation.name }}
117-
</span>
118-
<small class="text-muted truncate-n-lines two-lines">
119-
{{ tool.representation.description }}
120-
</small>
115+
<div style="flex-direction: column">
116+
<span class="truncate-n-lines three-lines">
117+
{{ tool.representation.name }}
118+
</span>
119+
<small class="text-muted truncate-n-lines two-lines">
120+
{{ tool.representation.description }}
121+
</small>
122+
</div>
121123
</Heading>
122124
<div class="d-flex justify-content-between">
123125
<BBadge v-b-tooltip.noninteractive.hover pill>

0 commit comments

Comments
 (0)