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