Skip to content

Commit 77bf81d

Browse files
committed
Fix control width.
1 parent f9767c0 commit 77bf81d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ui/components/Sync/SyncControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const SyncControls = ({
118118
const disableSyncButtons = syncDisabled || syncLoading;
119119

120120
return (
121-
<Flex start align className={className}>
121+
<Flex wide start align className={className}>
122122
{customActions && (
123123
<>
124124
<CustomActions actions={customActions} />

ui/components/Sync/__tests__/__snapshots__/SyncActions.test.tsx.snap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ exports[`SyncActions snapshots hideSyncOptions 1`] = `
1313
-webkit-box-align: center;
1414
-ms-flex-align: center;
1515
align-items: center;
16+
width: 100%;
1617
-webkit-box-pack: start;
1718
-webkit-justify-content: flex-start;
1819
-ms-flex-pack: start;
@@ -415,6 +416,7 @@ exports[`SyncActions snapshots non-suspended 1`] = `
415416
-webkit-box-align: center;
416417
-ms-flex-align: center;
417418
align-items: center;
419+
width: 100%;
418420
-webkit-box-pack: start;
419421
-webkit-justify-content: flex-start;
420422
-ms-flex-pack: start;
@@ -983,6 +985,7 @@ exports[`SyncActions snapshots suspended 1`] = `
983985
-webkit-box-align: center;
984986
-ms-flex-align: center;
985987
align-items: center;
988+
width: 100%;
986989
-webkit-box-pack: start;
987990
-webkit-justify-content: flex-start;
988991
-ms-flex-pack: start;

0 commit comments

Comments
 (0)