]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-forms/dynamic-form-field.component.scss
0737f372ac0d786e60c3fd6dd2ed1007b7871d4e
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / dynamic-form-field.component.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 input:not([type=submit]) {
5 @include peertube-input-text(340px);
6
7 display: block;
8 }
9
10 textarea {
11 @include peertube-textarea(340px, 200px);
12
13 display: block;
14 }
15
16 .peertube-select-container {
17 @include peertube-select-container(340px);
18 }
19
20 .label-small-info {
21 font-style: italic;
22 margin-bottom: 10px;
23 font-size: 13px;
24 }
25
26 my-peertube-checkbox + .label-small-info {
27 margin-top: 5px;
28 }
29
30 my-markdown-textarea {
31 display: block;
32 max-width: 500px;
33 }