Skip to content

Commit

Permalink
Fix mobile issue (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
khadni authored May 2, 2024
1 parent 1d0678e commit ca7387b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/CopyText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ const CopyContainer = ({ text, code, format, formatType }: Props) => {
display: inline-flex;
align-items: center;
gap: var(--space-1x);
word-break: break-word;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
}
.copyBtn {
Expand Down

0 comments on commit ca7387b

Please sign in to comment.