Skip to content

Commit 6f8c270

Browse files
authored
fix: adjust spacing and button types on StopInstallationModal (#1329)
1 parent 9fbeac5 commit 6f8c270

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/frontend/components/UI/Dialog/index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,7 @@
8484
justify-content: start;
8585
margin-top: var(--space-md);
8686
}
87+
88+
.body {
89+
padding-left: var(--space-sm);
90+
}

src/frontend/components/UI/StopInstallationModal/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ export default function StopInstallationModal(props: StopInstallProps) {
6262
</DialogContent>
6363
<DialogFooter>
6464
<Button
65-
type="tertiary"
66-
size="large"
65+
type="primary"
66+
size="medium"
6767
onClick={async () => {
6868
props.onClose()
6969
}}
@@ -72,7 +72,7 @@ export default function StopInstallationModal(props: StopInstallProps) {
7272
</Button>
7373
<Button
7474
type="secondary"
75-
size="large"
75+
size="medium"
7676
onClick={async () => {
7777
// if user wants to keep downloaded files and cancel download
7878
if (checkbox.current && checkbox.current.checked) {

0 commit comments

Comments
 (0)