Add features table on signup
[oweals/peertube.git] / client / src / app / signup / signup.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 my-instance-features-table {
5   display: block;
6
7   margin-bottom: 40px;
8 }
9
10 .form-group-terms {
11   margin: 30px 0;
12 }
13
14 .input-group {
15   @include peertube-input-group(400px);
16 }
17
18 input:not([type=submit]) {
19   @include peertube-input-text(400px);
20   display: block;
21
22   &#username {
23     width: auto;
24     flex-grow: 1;
25   }
26 }
27
28 input[type=submit] {
29   @include peertube-button;
30   @include orange-button;
31 }