From 4b47478440d0af1bf24c44ea614c0f62f20723f7 Mon Sep 17 00:00:00 2001 From: Angelo Delicato <20096272+thelicato@users.noreply.github.com> Date: Thu, 17 Nov 2022 17:34:40 +0100 Subject: [PATCH] feat: change list-content style (#91) Co-authored-by: thelicato Reviewed-on: https://github.com/go-vikunja/frontend/pull/91 --- src/components/list/partials/list-card.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/list/partials/list-card.vue b/src/components/list/partials/list-card.vue index 6a70ebb54..27f68c442 100644 --- a/src/components/list/partials/list-card.vue +++ b/src/components/list/partials/list-card.vue @@ -5,7 +5,7 @@ 'has-background': blurHashUrl !== '' || background !== null, }" :style="{ - 'background-color': list.hexColor, + 'border-color': `${list.hexColor}`, 'background-image': blurHashUrl !== null ? `url(${blurHashUrl})` : false, }" :to="{ name: 'list.index', params: { listId: list.id} }" @@ -85,6 +85,7 @@ async function loadBackground() { } const listStore = useListStore() +