@@ -192,7 +192,7 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
192
192
193
193
& : active {
194
194
background-color: ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ]
195
- . activeBackgroundColor } ;
195
+ . activeBackgroundColor } ;
196
196
${ activeColorFor ( buttonType ) } ;
197
197
}
198
198
& : active # btn-icon {
@@ -202,11 +202,11 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
202
202
& : hover {
203
203
color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . hoverColor } ;
204
204
background-color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ]
205
- . hoverBackgroundColor } ;
205
+ . hoverBackgroundColor } ;
206
206
207
207
border : ${ buttonType === 'stroke'
208
- ? `2px solid ${ COLORS . blue55 } `
209
- : buttonType === 'primary'
208
+ ? `2px solid ${ COLORS . blue55 } `
209
+ : buttonType === 'primary'
210
210
? `4px solid ${ COLORS . blue55 } `
211
211
: computedBorderStyle ( ) } ;
212
212
}
@@ -218,14 +218,14 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
218
218
& : disabled {
219
219
color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledColor } ;
220
220
background-color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ]
221
- . disabledBackgroundColor } ;
221
+ . disabledBackgroundColor } ;
222
222
border : 4px solid ${ COLORS . grey35 } ;
223
223
}
224
224
225
225
& [aria-disabled = 'true' ] {
226
226
color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledColor } ;
227
227
background-color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ]
228
- . disabledBackgroundColor } ;
228
+ . disabledBackgroundColor } ;
229
229
border : 4px solid ${ COLORS . grey35 } ;
230
230
}
231
231
@@ -241,13 +241,13 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
241
241
242
242
& : active {
243
243
background-color : ${ computedDisabled
244
- ? LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledBackgroundColor
245
- : LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . activeBackgroundColor } ;
244
+ ? LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledBackgroundColor
245
+ : LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . activeBackgroundColor } ;
246
246
${ ! computedDisabled && activeColorFor ( buttonType ) } ;
247
247
outline: 4px solid
248
248
${ computedDisabled
249
- ? LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledBackgroundColor
250
- : LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . activeBackgroundColor } ;
249
+ ? LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledBackgroundColor
250
+ : LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . activeBackgroundColor } ;
251
251
}
252
252
253
253
& : active # btn-icon {
@@ -256,14 +256,14 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
256
256
257
257
& : focus-visible {
258
258
background-color : ${ computedDisabled
259
- ? LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledBackgroundColor
260
- : LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . focusVisibleBackgroundColor } ;
259
+ ? LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledBackgroundColor
260
+ : LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . focusVisibleBackgroundColor } ;
261
261
${ ! computedDisabled && activeColorFor ( buttonType ) } ;
262
262
padding: calc(${ SPACING . spacing24 } + ${ SPACING . spacing2 } );
263
263
bor der: ${ computedBorderStyle ( ) } ;
264
264
outline: ${ computedDisabled
265
- ? 'none'
266
- : `3px solid
265
+ ? 'none'
266
+ : `3px solid
267
267
${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . focusVisibleOutlineColor } ` } ;
268
268
background- clip: padding-box;
269
269
box-shadow : none;
@@ -272,7 +272,7 @@ export function LargeButton(props: LargeButtonProps): JSX.Element {
272
272
& : disabled {
273
273
color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ] . disabledColor } ;
274
274
background-color : ${ LARGE_BUTTON_PROPS_BY_TYPE [ buttonType ]
275
- . disabledBackgroundColor } ;
275
+ . disabledBackgroundColor } ;
276
276
}
277
277
}
278
278
`
0 commit comments