fix: template fork button style on safari (#12202)

This commit is contained in:
akash-codemonk 2022-04-12 19:23:57 +05:30 committed by GitHub
parent 8af3602a5d
commit d292075243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -132,16 +132,16 @@ function ForkApplicationModal(props: ForkApplicationModalProps) {
disabled={forkingApplication}
onClick={() => setModalClose && setModalClose(false)}
size={Size.large}
tag="button"
text={createMessage(CANCEL)}
type="button"
/>
<Button
className="t--fork-app-to-org-button"
isLoading={forkingApplication}
onClick={forkApplication}
size={Size.large}
tag="button"
text={createMessage(FORK)}
type="button"
/>
</ButtonWrapper>
</>

View File

@ -91,16 +91,16 @@ function ForkTemplate({
disabled={isImportingTemplate}
onClick={onClose}
size={Size.large}
tag="button"
text={createMessage(CANCEL)}
type="button"
/>
<Button
className="t--fork-template-button"
isLoading={isImportingTemplate}
onClick={onFork}
size={Size.large}
tag="button"
text={createMessage(FORK_TEMPLATE)}
type="button"
/>
</ButtonsWrapper>
</StyledDialog>