File tree Expand file tree Collapse file tree
packages/fxa-settings/src/components/ThirdPartyAuth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,13 +16,22 @@ export default {
1616} as Meta ;
1717
1818export const Default = ( ) => {
19+ // Default separator type is 'or'
1920 return (
2021 < AppLayout >
2122 < Subject showSeparator />
2223 </ AppLayout >
2324 ) ;
2425} ;
2526
27+ export const SignInWithSeparator = ( ) => {
28+ return (
29+ < AppLayout >
30+ < Subject showSeparator separatorType = "signInWith" />
31+ </ AppLayout >
32+ ) ;
33+ } ;
34+
2635export const NoSeparator = ( ) => {
2736 return (
2837 < AppLayout >
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ const ThirdPartyAuth = ({
6464 separatorType === 'signInWith' ? 'Sign in with' : 'or' ;
6565 return (
6666 < FtlMsg id = { id } >
67- < div className = "mx-4 text-base text-grey-300 font-extralight" >
67+ < div className = "mx-4 text-base text-grey-500 font-extralight" >
6868 { defaultText }
6969 </ div >
7070 </ FtlMsg >
You can’t perform that action at this time.
0 commit comments