Skip to content

Commit

Permalink
fix(FEC-9654): error screen - the text for retry button on Spanish ex…
Browse files Browse the repository at this point in the history
…ceeds the button boundary (#490)

Replace `width: 120px` with `width: auto, min-width: 120px` to support long text.

Solves FEC-9654
  • Loading branch information
yairans committed Mar 4, 2020
1 parent 7eb8c5a commit 68fdbb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/error-overlay/_error-overlay.scss
Expand Up @@ -56,7 +56,9 @@

.retry-btn {
height: 36px;
width: 120px;
width: auto;
min-width: 120px;
padding: 0 8px;
border: 2px solid $grayscale1;
border-radius: 18px;
background-color: black;
Expand Down

0 comments on commit 68fdbb2

Please sign in to comment.