Fix signup setp buttons on chrome

pull/4903/head
Chocobozzz 2022-04-15 11:30:17 +02:00
parent 20be32a676
commit a94b02e11a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 0 deletions

View File

@ -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;
} }
} }