diff options
author | 2023-02-10 22:13:08 +0100 | |
---|---|---|
committer | 2023-02-10 22:20:50 +0100 | |
commit | 32f87f3fca3f556a7c0840cfe0e8a81e9c5d9347 (patch) | |
tree | 5ad95ba8c17eb0a4dfc05af87fb0cdea8560e17c /src/components/ToolCard.vue | |
parent | a3b1cb57378370742adb5cb1d24eb2c6c37205c7 (diff) | |
download | it-tools-32f87f3fca3f556a7c0840cfe0e8a81e9c5d9347.tar.gz it-tools-32f87f3fca3f556a7c0840cfe0e8a81e9c5d9347.tar.zst it-tools-32f87f3fca3f556a7c0840cfe0e8a81e9c5d9347.zip |
refactor(tool-card): enforce description height
Diffstat (limited to '')
-rw-r--r-- | src/components/ToolCard.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index 347ce20..d8a0910 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -24,7 +24,7 @@ </n-h3> <div class="description"> - <n-ellipsis :line-clamp="2" :tooltip="false"> + <n-ellipsis :line-clamp="2" :tooltip="false" style="min-height: 44.78px"> {{ tool.description }} <br /> </n-ellipsis> |