Skip to content

Commit

Permalink
fix: Prevent anchor tags inside paragraph from overflowing by truncat…
Browse files Browse the repository at this point in the history
…ing with ellipsis
  • Loading branch information
hakantapanyigit authored Dec 27, 2024
1 parent 20b26d0 commit 23fe58c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions website/mint-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -803,3 +803,11 @@ table {
.codeblock-dark {
border-radius: 0 !important;
}

p a {
display: inline-block;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

0 comments on commit 23fe58c

Please sign in to comment.