diff options
-rw-r--r-- | client/src/app/+signup/+register/register.component.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/+signup/+register/register.component.scss b/client/src/app/+signup/+register/register.component.scss index e3ef95609..4be67a858 100644 --- a/client/src/app/+signup/+register/register.component.scss +++ b/client/src/app/+signup/+register/register.component.scss | |||
@@ -62,11 +62,17 @@ button { | |||
62 | 62 | ||
63 | &[cdkStepperNext] { | 63 | &[cdkStepperNext] { |
64 | @include orange-button; | 64 | @include orange-button; |
65 | |||
66 | // Chrome does not support inline-end | ||
67 | float: right; | ||
65 | float: inline-end; | 68 | float: inline-end; |
66 | } | 69 | } |
67 | 70 | ||
68 | &[cdkStepperPrevious] { | 71 | &[cdkStepperPrevious] { |
69 | @include grey-button; | 72 | @include grey-button; |
73 | |||
74 | // Chrome does not support inline-start | ||
75 | float: left; | ||
70 | float: inline-start; | 76 | float: inline-start; |
71 | } | 77 | } |
72 | } | 78 | } |