Skip to content

Commit

Permalink
add transparency at right to overflowing text
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorVilas committed Jan 11, 2023
1 parent d78e1c3 commit 50760ba
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ body {background-color: var(--bgc-page);}
color: var(--txt-col-2);
overflow: hidden;
white-space: nowrap;
width: 100%;
}
.card .date-creation {
grid-area: created;
Expand All @@ -251,6 +252,14 @@ body {background-color: var(--bgc-page);}
background-color: white;
}

/*adding transparency for overflowed text*/
.card .title:not(.edit-title),
.card .description,
.card label{
mask-image: linear-gradient(to left, transparent, white 50px);
}


.card .checklist {
grid-area: tasks;
display: grid;
Expand Down

0 comments on commit 50760ba

Please sign in to comment.