Skip to content

Commit

Permalink
fix: spacing fix on authentication modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Im Khem authored and Im Khem committed Oct 5, 2023
1 parent b237b28 commit a925490
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/scss/modal.scss
Expand Up @@ -40,6 +40,7 @@
font-family: Ezra;
font-size: 30px;
word-wrap: break-word;
line-height: 1.5;
}

.masa-spinner {
Expand Down Expand Up @@ -535,6 +536,10 @@
.dont-have-a-wallet {
padding-top: 0;
}

.loading {
height: 70%;
}
}

.interface-error-modal {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/modals/ModalLoading.tsx
Expand Up @@ -3,7 +3,7 @@ import { Spinner } from '../spinner';

export const ModalLoading = ({ titleText }: { titleText?: ReactNode }) => (
<section className="interface-connected">
<section>
<section className="loading">
<h3 className="title">{titleText}</h3>
<Spinner />
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/modals/authenticate/connected-view.tsx
Expand Up @@ -36,7 +36,7 @@ const ConnectedView = ({
return (
<Modal>
<section className="interface-connected">
<section>
<section className="loading">
<h3 className="title">{titleText}</h3>
<Spinner />
</section>
Expand Down

0 comments on commit a925490

Please sign in to comment.