]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-forms/dynamic-form-field.component.scss
Less complicated markdown textarea CSS
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / dynamic-form-field.component.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
7294aab0
C
3
4input:not([type=submit]) {
5 @include peertube-input-text(340px);
6
7 display: block;
8}
9
10textarea {
11 @include peertube-textarea(340px, 200px);
12
13 display: block;
14}
15
16.peertube-select-container {
17 @include peertube-select-container(340px);
18}
781ba981
C
19
20.label-small-info {
21 font-style: italic;
22 margin-bottom: 10px;
23 font-size: 13px;
24}
023edc8a
C
25
26my-peertube-checkbox + .label-small-info {
27 margin-top: 5px;
28}