Skip to content

Commit

Permalink
Fixed task overflow bug
Browse files Browse the repository at this point in the history
  • Loading branch information
talentedunicorn committed Jan 28, 2024
1 parent 176b87a commit c2e93ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/Task.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@
border: 1px solid var(--gray-light);
border-radius: 0.5em;
background: var(--white);
display: grid;
gap: 1rem;
}
header {
Expand Down Expand Up @@ -119,6 +117,7 @@
overflow: clip;
position: relative;
transition: max-height 0.2s ease-in;
margin: 1rem 0;
}
.Content::after {
Expand Down

0 comments on commit c2e93ae

Please sign in to comment.