blob: 6f61b78f719df5a3c04eb7e6cbfc5461e7016327 (
plain) (
tree)
|
|
@import '_variables';
@import '_mixins';
.alert {
font-size: 15px;
text-align: center;
}
.wrapper {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
& > div {
margin-bottom: 40px;
width: 450px;
@media screen and (max-width: 500px) {
width: auto;
}
}
}
my-instance-features-table {
display: block;
margin-bottom: 40px;
}
.form-group-terms {
margin: 30px 0;
}
.input-group {
@include peertube-input-group(400px);
}
.input-group-append {
height: 30px;
}
input:not([type=submit]) {
@include peertube-input-text(400px);
display: block;
&#username,
&#name {
width: auto !important;
flex-grow: 1;
}
}
input[type=submit],
button {
@include peertube-button;
@include orange-button;
}
|