diff options
author | Chocobozzz <me@florianbigard.com> | 2019-05-29 14:39:49 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-05-29 14:39:49 +0200 |
commit | b247a132709eb212fef4f77c4912dc0ec108f36b (patch) | |
tree | b2700e6ed55e00cd213c44e8afdeea4c327ae904 /client/src/app/signup/signup.component.scss | |
parent | 1d5342abc43df02cf0bd69b1e865c0f179182eef (diff) | |
download | PeerTube-b247a132709eb212fef4f77c4912dc0ec108f36b.tar.gz PeerTube-b247a132709eb212fef4f77c4912dc0ec108f36b.tar.zst PeerTube-b247a132709eb212fef4f77c4912dc0ec108f36b.zip |
Add success icon on registration
Diffstat (limited to 'client/src/app/signup/signup.component.scss')
-rw-r--r-- | client/src/app/signup/signup.component.scss | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/client/src/app/signup/signup.component.scss b/client/src/app/signup/signup.component.scss deleted file mode 100644 index 6f61b78f7..000000000 --- a/client/src/app/signup/signup.component.scss +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | .alert { | ||
5 | font-size: 15px; | ||
6 | text-align: center; | ||
7 | } | ||
8 | |||
9 | .wrapper { | ||
10 | display: flex; | ||
11 | justify-content: space-between; | ||
12 | flex-wrap: wrap; | ||
13 | |||
14 | & > div { | ||
15 | margin-bottom: 40px; | ||
16 | width: 450px; | ||
17 | |||
18 | @media screen and (max-width: 500px) { | ||
19 | width: auto; | ||
20 | } | ||
21 | } | ||
22 | } | ||
23 | |||
24 | my-instance-features-table { | ||
25 | display: block; | ||
26 | |||
27 | margin-bottom: 40px; | ||
28 | } | ||
29 | |||
30 | .form-group-terms { | ||
31 | margin: 30px 0; | ||
32 | } | ||
33 | |||
34 | .input-group { | ||
35 | @include peertube-input-group(400px); | ||
36 | } | ||
37 | |||
38 | .input-group-append { | ||
39 | height: 30px; | ||
40 | } | ||
41 | |||
42 | input:not([type=submit]) { | ||
43 | @include peertube-input-text(400px); | ||
44 | |||
45 | display: block; | ||
46 | |||
47 | &#username, | ||
48 | &#name { | ||
49 | width: auto !important; | ||
50 | flex-grow: 1; | ||
51 | } | ||
52 | } | ||
53 | |||
54 | input[type=submit], | ||
55 | button { | ||
56 | @include peertube-button; | ||
57 | @include orange-button; | ||
58 | } | ||