Skip to content

Commit 6385436

Browse files
committed
chore: improve styles
1 parent f0e10d3 commit 6385436

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

packages/devtools/src/app/components/assets/List.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ defineProps<{
1616
>
1717
<div flex="~ gap-1">
1818
<DisplayFileIcon :filename="asset.filename" />
19-
{{ asset.filename }}
19+
<span overflow-hidden text-ellipsis break-all line-clamp-2>
20+
{{ asset.filename }}
21+
</span>
2022
</div>
2123
</NuxtLink>
2224
</template>

packages/devtools/src/app/components/modules/Folder.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const moduleTree = computed(() => {
5757
</script>
5858

5959
<template>
60-
<div of-auto max-h-screen pt-40 relative>
60+
<div of-auto max-h-screen pt-45 relative>
6161
<div flex="~ col gap-2" p4>
6262
<DisplayTreeNode
6363
v-if="Object.keys(moduleTree.workspace.children).length"

packages/devtools/src/app/components/plugins/FlatList.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ defineProps<{
1313
<div w-8 text-right text-xs op50>
1414
#{{ plugin.plugin_id }}
1515
</div>
16-
<DisplayPluginName :name="plugin.name" />
16+
<span overflow-hidden text-ellipsis break-all line-clamp-2>
17+
<DisplayPluginName :name="plugin.name" />
18+
</span>
1719
</div>
1820
</template>
1921
</div>

0 commit comments

Comments
 (0)