]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-forms/dynamic-form-field.component.scss
Bumped to version v5.2.1
[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 max-width: 340px;
8 width: 100%;
9
10 display: block;
11 }
12
13 textarea {
14 @include peertube-textarea(340px, 200px);
15
16 display: block;
17 }
18
19 .peertube-select-container {
20 @include peertube-select-container(340px);
21 }
22
23 .label-small-info {
24 font-style: italic;
25 margin-bottom: 10px;
26 font-size: 13px;
27 }
28
29 my-peertube-checkbox + .label-small-info {
30 margin-top: 5px;
31 }
32
33 my-markdown-textarea {
34 display: block;
35 max-width: 500px;
36 }