23 lines
300 B
SCSS
23 lines
300 B
SCSS
@use '_variables' as *;
|
|
@use '_mixins' as *;
|
|
|
|
.modal-subtitle {
|
|
font-size: 16px;
|
|
line-height: 1rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.modal-body {
|
|
text-align: left;
|
|
}
|
|
|
|
input[type=text] {
|
|
@include peertube-input-text(340px);
|
|
|
|
display: block;
|
|
}
|
|
|
|
textarea {
|
|
@include peertube-textarea(100%, 200px);
|
|
}
|