2019-01-10 04:12:41 -06:00
|
|
|
@import 'variables';
|
|
|
|
@import 'mixins';
|
|
|
|
|
|
|
|
input[type=text] {
|
|
|
|
@include peertube-input-text(340px);
|
2021-06-04 08:13:28 -05:00
|
|
|
display: block;
|
2021-06-06 16:47:24 -05:00
|
|
|
|
|
|
|
@media screen and (max-width: #{map-get($container-max-widths, sm)}) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-01-10 04:12:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
@include peertube-textarea(100%, 200px);
|
|
|
|
}
|
2021-06-06 16:47:24 -05:00
|
|
|
|
|
|
|
@media screen and (max-width: breakpoint(md)) {
|
|
|
|
.modal-body {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|