diff options
-rw-r--r-- | client/src/app/+about/about-instance/contact-admin-modal.component.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/app/+about/about-instance/contact-admin-modal.component.scss b/client/src/app/+about/about-instance/contact-admin-modal.component.scss index 260d77888..cd3cf85dd 100644 --- a/client/src/app/+about/about-instance/contact-admin-modal.component.scss +++ b/client/src/app/+about/about-instance/contact-admin-modal.component.scss | |||
@@ -4,8 +4,18 @@ | |||
4 | input[type=text] { | 4 | input[type=text] { |
5 | @include peertube-input-text(340px); | 5 | @include peertube-input-text(340px); |
6 | display: block; | 6 | display: block; |
7 | |||
8 | @media screen and (max-width: #{map-get($container-max-widths, sm)}) { | ||
9 | width: 100%; | ||
10 | } | ||
7 | } | 11 | } |
8 | 12 | ||
9 | textarea { | 13 | textarea { |
10 | @include peertube-textarea(100%, 200px); | 14 | @include peertube-textarea(100%, 200px); |
11 | } | 15 | } |
16 | |||
17 | @media screen and (max-width: breakpoint(md)) { | ||
18 | .modal-body { | ||
19 | text-align: left; | ||
20 | } | ||
21 | } | ||