From c7b4f0eb3493ffbaa330aa67762355dbf37ec008 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 4 Mar 2021 16:58:35 +0200 Subject: Fixed sizing twitch of input fields on non-chromium based browsers (FireFox) --- src/app/components/register/register.component.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/app/components/register/register.component.css') diff --git a/src/app/components/register/register.component.css b/src/app/components/register/register.component.css index 93d8006..973c6f0 100644 --- a/src/app/components/register/register.component.css +++ b/src/app/components/register/register.component.css @@ -1,9 +1,5 @@ /* A lot of stuff are moved to the global styles! */ -* { - transition: 0.2s; -} - form { width: 100%; } @@ -20,6 +16,10 @@ form { box-sizing: border-box; } +.submit-btn { + transition: 0.2s; +} + .input-selection:nth-of-type(1) { margin-top: 1.2em; } -- cgit v1.2.3 From 05f0129fbcf5421b3b0acab0429c8dbbb5737ba4 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Mon, 22 Mar 2021 15:12:01 +0200 Subject: Removed unused css styling in register and login components --- src/app/components/login/login.component.css | 8 ----- src/app/components/register/register.component.css | 40 ---------------------- 2 files changed, 48 deletions(-) (limited to 'src/app/components/register/register.component.css') diff --git a/src/app/components/login/login.component.css b/src/app/components/login/login.component.css index 3cd7198..e69de29 100644 --- a/src/app/components/login/login.component.css +++ b/src/app/components/login/login.component.css @@ -1,8 +0,0 @@ -.input-selection:first-of-type { - margin-top: 0.5em; -} - -.redirect-to-register { - color: var(--focus-color); - border-color: var(--focus-color); -} diff --git a/src/app/components/register/register.component.css b/src/app/components/register/register.component.css index 973c6f0..e69de29 100644 --- a/src/app/components/register/register.component.css +++ b/src/app/components/register/register.component.css @@ -1,40 +0,0 @@ -/* A lot of stuff are moved to the global styles! */ - -form { - width: 100%; -} - -@media screen and (max-height: 630px) { - #content { - height: fit-content !important; - } -} - -#content hr { - width: 100%; - border: 1px solid black; - box-sizing: border-box; -} - -.submit-btn { - transition: 0.2s; -} - -.input-selection:nth-of-type(1) { - margin-top: 1.2em; -} - -.submit-btn { - margin-bottom: .2em; -} - -.redirect-to-login { - color: var(--focus-color); - background-color: var(--bg-color); - border-color: var(--focus-color); -} - -.redirect-to-login:hover { - border-color: black !important; - color: black; -} -- cgit v1.2.3