diff options
author | Chocobozzz <me@florianbigard.com> | 2022-04-15 11:30:17 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-04-15 11:30:17 +0200 |
commit | a94b02e11ac730cd7512ea47c4b7d1320d842baa (patch) | |
tree | 090e685744fbd0abad4433b9dedd3fd05b2c82b2 /client/src/app/+signup | |
parent | 20be32a676e80e14fe1a5e650f2ae947975eaf38 (diff) | |
download | PeerTube-a94b02e11ac730cd7512ea47c4b7d1320d842baa.tar.gz PeerTube-a94b02e11ac730cd7512ea47c4b7d1320d842baa.tar.zst PeerTube-a94b02e11ac730cd7512ea47c4b7d1320d842baa.zip |
Fix signup setp buttons on chrome
Diffstat (limited to 'client/src/app/+signup')
-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 | } |