Skip to content

Commit

Permalink
Merge pull request #38 from LucasWerey/fix/12
Browse files Browse the repository at this point in the history
fix(dslib): change color of title and desc of delete modal
  • Loading branch information
LucasWerey authored Jan 18, 2024
2 parents 70d9494 + 20c52c3 commit a279b4a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lucaswerey/dslib-pfe",
"version": "0.0.58",
"version": "0.0.59",
"private": false,
"main": "./lib/index.umd.js",
"module": "./lib/index.mjs",
Expand Down
7 changes: 5 additions & 2 deletions src/components/Indicators/DeleteModal/DeleteModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
class="flex min-h-44 w-[300px] flex-col items-center gap-8 overflow-hidden rounded-3xl bg-basic-white p-6 shadow sm:w-[400px]"
>
<div class="flex w-full flex-col items-center gap-4">
<div class="text-center font-inter text-8">{{ title }}</div>
<div v-show="description" class="text-center font-eina1 text-3 font-normal">
<div class="text-center font-inter text-8 text-basic-black">{{ title }}</div>
<div
v-show="description"
class="text-center font-eina1 text-3 font-normal text-basic-darkgrey"
>
{{ description }}
</div>
</div>
Expand Down

0 comments on commit a279b4a

Please sign in to comment.