Fix overflow when creating a channel
This commit is contained in:
parent
414131338d
commit
2a53942d9e
|
@ -11,7 +11,7 @@ my-actor-avatar-info {
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group {
|
.input-group {
|
||||||
@include peertube-input-group(340px);
|
@include peertube-input-group(fit-content);
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group-append {
|
.input-group-append {
|
||||||
|
@ -42,4 +42,4 @@ textarea {
|
||||||
input[type=submit] {
|
input[type=submit] {
|
||||||
@include peertube-button;
|
@include peertube-button;
|
||||||
@include orange-button;
|
@include orange-button;
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,7 +99,7 @@
|
||||||
|
|
||||||
@mixin peertube-input-group($width) {
|
@mixin peertube-input-group($width) {
|
||||||
width: $width;
|
width: $width;
|
||||||
height: $button-height;
|
min-height: $button-height;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue