Skip to content

Commit 7c88210

Browse files
committed
Potential fix for button text overflow
1 parent 0d1d7c2 commit 7c88210

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

special-pages/pages/onboarding/app/components/v3/ElasticButton.module.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@
2323
letter-spacing: 0.06px;
2424
line-height: var(--btn-line-height);
2525

26-
white-space: nowrap;
27-
28-
height: var(--btn-height);
26+
height: 100%;
27+
min-height: var(--btn-height);
2928
padding: calc(10 * var(--px-in-rem)) var(--sp-6);
3029

3130
color: white;

special-pages/pages/onboarding/app/components/v3/SingleStep.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
.buttonBarContents {
5252
display: grid;
5353
gap: var(--sp-2);
54-
grid-template-columns: 1fr min-content min-content;
54+
grid-template-columns: 1fr auto auto;
5555
grid-template-areas: ". dismiss accept";
5656

5757
[data-platform-name="windows"] & {

0 commit comments

Comments
 (0)