From 13efc85d5a6f2a1185a4c0037f47a22091f2943a Mon Sep 17 00:00:00 2001 From: William Grant Date: Mon, 10 Oct 2022 14:46:45 +1100 Subject: [PATCH] feat: verified signin and registration pages --- stylesheets/_global.scss | 1 + ts/components/registration/SignInTab.tsx | 2 +- ts/themes/colors.tsx | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index 91d71c3bc..fcc3e6be2 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -215,6 +215,7 @@ $loading-height: 16px; } .message { -webkit-user-select: text; + user-select: text; max-width: 35em; } diff --git a/ts/components/registration/SignInTab.tsx b/ts/components/registration/SignInTab.tsx index 70cd670fd..fa1f4c7fb 100644 --- a/ts/components/registration/SignInTab.tsx +++ b/ts/components/registration/SignInTab.tsx @@ -191,7 +191,7 @@ export const SignInTab = () => { left: 0, right: 0, pointerEvents: 'all', - backgroundColor: '#00000088', + backgroundColor: 'var(--background-primary-color)', }} > diff --git a/ts/themes/colors.tsx b/ts/themes/colors.tsx index d4e9bf209..af75226e3 100644 --- a/ts/themes/colors.tsx +++ b/ts/themes/colors.tsx @@ -118,7 +118,7 @@ type ThemeColors = { COLOR4: string; COLOR5: string; COLOR6: string; - COLOR7?: string; // Only used with Ocean Light + COLOR7?: string; // Only used with Ocean Themes }; type Themes = Record;