From ef35914f342a6c0aeb7a6c5907b28aed2d5cfad9 Mon Sep 17 00:00:00 2001 From: wbuezas Date: Sun, 18 Aug 2024 21:39:44 -0300 Subject: [PATCH] Card list change --- src/components/ui/CardList.vue | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/src/components/ui/CardList.vue b/src/components/ui/CardList.vue index 2ff96306..eef1c06b 100644 --- a/src/components/ui/CardList.vue +++ b/src/components/ui/CardList.vue @@ -22,17 +22,15 @@ const handleClick = () => { :class="{ 'cursor-pointer': clickable, 'no-radius': !rounded }" @click="handleClick()" > - -
- -
- -
+
+ +
+
- - +
+
- +
@@ -41,4 +39,20 @@ const handleClick = () => { border-bottom: 1px solid $gray-light; padding: 20px; } + +.content { + display: flex; + flex-direction: column; + overflow: hidden; + + * { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } +} + +.content-container { + display: flex; +}