mirror of https://github.com/Chocobozzz/PeerTube
Fix signup setp buttons on chrome
parent
20be32a676
commit
a94b02e11a
|
@ -62,11 +62,17 @@ button {
|
||||||
|
|
||||||
&[cdkStepperNext] {
|
&[cdkStepperNext] {
|
||||||
@include orange-button;
|
@include orange-button;
|
||||||
|
|
||||||
|
// Chrome does not support inline-end
|
||||||
|
float: right;
|
||||||
float: inline-end;
|
float: inline-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[cdkStepperPrevious] {
|
&[cdkStepperPrevious] {
|
||||||
@include grey-button;
|
@include grey-button;
|
||||||
|
|
||||||
|
// Chrome does not support inline-start
|
||||||
|
float: left;
|
||||||
float: inline-start;
|
float: inline-start;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue