diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-04 16:58:35 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-04 16:58:35 +0200 |
| commit | c7b4f0eb3493ffbaa330aa67762355dbf37ec008 (patch) | |
| tree | bc7cddccdd73f1f1035672950470078b7f5a03ca /src/app | |
| parent | b3c37ed5528cbef77f3914c41b2bbf22bed9fb9b (diff) | |
| download | DevHive-Angular-c7b4f0eb3493ffbaa330aa67762355dbf37ec008.tar DevHive-Angular-c7b4f0eb3493ffbaa330aa67762355dbf37ec008.tar.gz DevHive-Angular-c7b4f0eb3493ffbaa330aa67762355dbf37ec008.zip | |
Fixed sizing twitch of input fields on non-chromium based browsers (FireFox)
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/components/login/login.component.css | 8 | ||||
| -rw-r--r-- | src/app/components/register/register.component.css | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/app/components/login/login.component.css b/src/app/components/login/login.component.css index 766522e..103f5c0 100644 --- a/src/app/components/login/login.component.css +++ b/src/app/components/login/login.component.css @@ -1,7 +1,3 @@ -* { - transition: .2s; -} - form { width: 100%; } @@ -12,6 +8,10 @@ form { box-sizing: border-box; } +.submit-btn { + transition: 0.2s; +} + .input-selection:nth-of-type(1) { margin-top: 1.2em; } 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; } |
