feat: verified signin and registration pages

pull/2522/head
William Grant 3 years ago
parent b4828b141e
commit 13efc85d5a

@ -215,6 +215,7 @@ $loading-height: 16px;
} }
.message { .message {
-webkit-user-select: text; -webkit-user-select: text;
user-select: text;
max-width: 35em; max-width: 35em;
} }

@ -191,7 +191,7 @@ export const SignInTab = () => {
left: 0, left: 0,
right: 0, right: 0,
pointerEvents: 'all', pointerEvents: 'all',
backgroundColor: '#00000088', backgroundColor: 'var(--background-primary-color)',
}} }}
> >
<SessionSpinner loading={true} /> <SessionSpinner loading={true} />

@ -118,7 +118,7 @@ type ThemeColors = {
COLOR4: string; COLOR4: string;
COLOR5: string; COLOR5: string;
COLOR6: string; COLOR6: string;
COLOR7?: string; // Only used with Ocean Light COLOR7?: string; // Only used with Ocean Themes
}; };
type Themes = Record<ThemeNames, ThemeColors>; type Themes = Record<ThemeNames, ThemeColors>;

Loading…
Cancel
Save