aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-key-value-list/c-key-value-list.vue
diff options
context:
space:
mode:
authorGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-11-12 23:22:41 +0100
committerGravatar GitHub <noreply@github.com> 2023-11-12 22:22:41 +0000
commit478192065e6a251579a08089235ad1f26e0cc9c9 (patch)
treeb309be21ca831eaf38436f78d06101f50cec401c /src/ui/c-key-value-list/c-key-value-list.vue
parent205e360400d588a5f9ddc9595fca29db68a07bf6 (diff)
downloadit-tools-478192065e6a251579a08089235ad1f26e0cc9c9.tar.gz
it-tools-478192065e6a251579a08089235ad1f26e0cc9c9.tar.zst
it-tools-478192065e6a251579a08089235ad1f26e0cc9c9.zip
feat(new tool): pdf signature checker (#745)
Diffstat (limited to 'src/ui/c-key-value-list/c-key-value-list.vue')
-rw-r--r--src/ui/c-key-value-list/c-key-value-list.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/c-key-value-list/c-key-value-list.vue b/src/ui/c-key-value-list/c-key-value-list.vue
index d8a2b00..d863bd5 100644
--- a/src/ui/c-key-value-list/c-key-value-list.vue
+++ b/src/ui/c-key-value-list/c-key-value-list.vue
@@ -9,13 +9,13 @@ const formattedItems = computed(() => items.value.filter(item => !_.isNil(item.v
</script>
<template>
- <div my-5>
- <div v-for="item in formattedItems" :key="item.label" flex gap-2 py-1 class="c-key-value-list__item">
- <div flex-basis-180px text-right font-bold class="c-key-value-list__key">
+ <div flex flex-col gap-2>
+ <div v-for="item in formattedItems" :key="item.label" class="c-key-value-list__item">
+ <div class="c-key-value-list__key" text-13px lh-normal>
{{ item.label }}
</div>
- <c-key-value-list-item :item="item" class="c-key-value-list__value" />
+ <c-key-value-list-item :item="item" class="c-key-value-list__value" font-bold lh-normal />
</div>
</div>
</template>