Skip to content
Snippets Groups Projects
Commit bbffed8d authored by Romain CREY's avatar Romain CREY
Browse files

fix: color button create account

parent 1f0bbf1d
Branches
Tags
2 merge requests!50Merge dev into master,!41Features/us162 buttons order + color + locked challenge logo
...@@ -59,7 +59,6 @@ const SecondaryButton = withStyles({ ...@@ -59,7 +59,6 @@ const SecondaryButton = withStyles({
border: '1px solid #121212', border: '1px solid #121212',
}, },
label: { label: {
color: 'var(--redPrimary)',
fontWeight: 'normal', fontWeight: 'normal',
}, },
})(BaseButton) })(BaseButton)
......
...@@ -226,6 +226,7 @@ const KonnectorLoginForm: React.FC<KonnectorLoginFormProps> = ({ ...@@ -226,6 +226,7 @@ const KonnectorLoginForm: React.FC<KonnectorLoginFormProps> = ({
</div> </div>
<StyledButton <StyledButton
type="button" type="button"
className="create-account"
color="secondary" color="secondary"
disabled={loading} disabled={loading}
onClick={() => window.open(siteLink, '_blank')} onClick={() => window.open(siteLink, '_blank')}
......
...@@ -54,6 +54,7 @@ const KonnectorOAuthForm: React.FC<KonnectorOAuthFormProps> = ({ ...@@ -54,6 +54,7 @@ const KonnectorOAuthForm: React.FC<KonnectorOAuthFormProps> = ({
<StyledButton <StyledButton
type="button" type="button"
color="secondary" color="secondary"
className="create-account"
disabled={loading} disabled={loading}
onClick={() => window.open(siteLink, '_blank')} onClick={() => window.open(siteLink, '_blank')}
> >
......
...@@ -90,6 +90,7 @@ ...@@ -90,6 +90,7 @@
} }
.konnector-delete { .konnector-delete {
margin-right: 0.25rem; margin-right: 0.25rem;
color: $red-primary;
} }
.konnector-update { .konnector-update {
margin-left: 0.25rem; margin-left: 0.25rem;
...@@ -141,6 +142,9 @@ ...@@ -141,6 +142,9 @@
.koauthform { .koauthform {
margin: 0 1.5rem; margin: 0 1.5rem;
padding: 0 1rem; padding: 0 1rem;
.create-account {
color: $text-bright;
}
@media #{$large-phone} { @media #{$large-phone} {
margin: 0; margin: 0;
padding: 0 1rem; padding: 0 1rem;
...@@ -156,6 +160,9 @@ ...@@ -156,6 +160,9 @@
// KonnectorLoginForm // KonnectorLoginForm
.kloginauthform { .kloginauthform {
.create-account {
color: $text-bright;
}
.kloginauthform-text { .kloginauthform-text {
color: $text-bright; color: $text-bright;
padding-top: 1rem; padding-top: 1rem;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment