diff options
author | Chocobozzz <me@florianbigard.com> | 2018-03-28 18:22:59 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-03-28 18:22:59 +0200 |
commit | 2b084d7048a2d8a571d601916bdd21cef3a36311 (patch) | |
tree | 0cf646a0789889ba2bfa8a5f9ba49f41d6ddca9a /client/src/app/login/login.component.scss | |
parent | 5afdd0a52f2f1fa79ed9bf241b5a525366658fa1 (diff) | |
download | PeerTube-2b084d7048a2d8a571d601916bdd21cef3a36311.tar.gz PeerTube-2b084d7048a2d8a571d601916bdd21cef3a36311.tar.zst PeerTube-2b084d7048a2d8a571d601916bdd21cef3a36311.zip |
Add link to register in login form
Diffstat (limited to 'client/src/app/login/login.component.scss')
-rw-r--r-- | client/src/app/login/login.component.scss | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/client/src/app/login/login.component.scss b/client/src/app/login/login.component.scss index 2cf6991ce..4a37ee961 100644 --- a/client/src/app/login/login.component.scss +++ b/client/src/app/login/login.component.scss | |||
@@ -1,9 +1,15 @@ | |||
1 | @import '_variables'; | 1 | @import '_variables'; |
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | 3 | ||
4 | label { | ||
5 | display: block; | ||
6 | } | ||
7 | |||
4 | input:not([type=submit]) { | 8 | input:not([type=submit]) { |
5 | @include peertube-input-text(340px); | 9 | @include peertube-input-text(340px); |
6 | display: block; | 10 | display: inline-block; |
11 | margin-right: 5px; | ||
12 | |||
7 | } | 13 | } |
8 | 14 | ||
9 | input[type=submit] { | 15 | input[type=submit] { |
@@ -11,12 +17,13 @@ input[type=submit] { | |||
11 | @include orange-button; | 17 | @include orange-button; |
12 | } | 18 | } |
13 | 19 | ||
14 | input[type=password] { | ||
15 | display: inline-block; | ||
16 | margin-right: 5px; | ||
17 | } | ||
18 | |||
19 | .forgot-password-button { | 20 | .forgot-password-button { |
20 | display: inline-block; | 21 | display: inline-block; |
21 | cursor: pointer; | 22 | cursor: pointer; |
22 | } | 23 | } |
24 | |||
25 | .create-an-account { | ||
26 | @include disable-default-a-behaviour; | ||
27 | |||
28 | color: #000; | ||
29 | } | ||