Fix input size of contact form on mobile view

pull/4196/head
Kimsible 2021-06-06 23:47:24 +02:00 committed by Chocobozzz
parent 47162a9c96
commit 089cfa6569
1 changed files with 10 additions and 0 deletions

View File

@ -4,8 +4,18 @@
input[type=text] {
@include peertube-input-text(340px);
display: block;
@media screen and (max-width: #{map-get($container-max-widths, sm)}) {
width: 100%;
}
}
textarea {
@include peertube-textarea(100%, 200px);
}
@media screen and (max-width: breakpoint(md)) {
.modal-body {
text-align: left;
}
}