Skip to content

Commit c5e601e

Browse files
committed
fix(ui): added spacing between the buttons in the tutorial popovers
1 parent 4a8f13d commit c5e601e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

redisinsight/ui/src/components/markdown/CodeButtonBlock/components/RunConfirmationPopover.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { setDBConfigStorageField } from 'uiSrc/services'
77
import { ConfigDBStorageItem } from 'uiSrc/constants/storage'
88
import { FeatureFlagComponent } from 'uiSrc/components'
99
import { Spacer } from 'uiSrc/components/base/layout/spacer'
10+
import { Row } from 'uiSrc/components/base/layout/flex'
1011
import {
1112
PrimaryButton,
1213
SecondaryButton,
@@ -67,7 +68,7 @@ const RunConfirmationPopover = ({ onApply }: Props) => {
6768
aria-label="checkbox do not show agan"
6869
/>
6970
<div className={styles.popoverFooter}>
70-
<div>
71+
<Row gap="m" justify="end">
7172
<FeatureFlagComponent name={FeatureFlags.envDependent}>
7273
<SecondaryButton
7374
size="s"
@@ -86,7 +87,7 @@ const RunConfirmationPopover = ({ onApply }: Props) => {
8687
>
8788
Run
8889
</PrimaryButton>
89-
</div>
90+
</Row>
9091
</div>
9192
</>
9293
)

0 commit comments

Comments
 (0)