Skip to content

Commit

Permalink
Fix text overflow on mobile (#10964)
Browse files Browse the repository at this point in the history
## Description 

Describe the changes or additions included in this PR.

Fix text overflow issue on mobile 
<img width="395" alt="Screenshot 2023-04-16 at 10 23 39 PM"
src="https://user-images.githubusercontent.com/126525197/232363094-f51536dd-5d4b-46c8-b161-6a2f212e4882.png">

## Test Plan 

How did you test the new or updated feature?

---
If your changes are not user-facing and not a breaking change, you can
skip the following section. Otherwise, please indicate what changed, and
then add to the Release Notes section as highlighted during the release
process.

### Type of Change (Check all that apply)

- [x] user-visible impact
- [ ] breaking change for a client SDKs
- [ ] breaking change for FNs (FN binary must upgrade)
- [ ] breaking change for validators or node operators (must upgrade
binaries)
- [ ] breaking change for on-chain data layout
- [ ] necessitate either a data wipe or data migration

### Release notes
  • Loading branch information
Jibz-Mysten authored Apr 17, 2023
1 parent 30d0004 commit 4024523
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function Inputs({ inputs }: Props) {

return (
<li key={index}>
<div className="mt-1 text-bodySmall font-medium text-steel-dark">
<div className="mt-1 break-all text-bodySmall font-medium text-steel-dark">
{JSON.stringify(input.value)}
</div>
</li>
Expand Down

0 comments on commit 4024523

Please sign in to comment.