Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 74 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions src/assets/images/google.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 23 additions & 1 deletion src/board/components/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,29 @@ export function Login({ state, effects }) {
src: '/dist/images/facebook.svg',
className: 'fl w1',
}),
t`Continuar con Facebook`,
t`Acceso con Facebook`,
]
)
),
providers.includes('google') &&
div(
'.form-group',
{},
a(
'.btn.btn-primary.db.w-80.btn-google.center',
{
href:
Anzu.layer +
'oauth/google?redir=' +
window.location.href,
style: {},
},
[
img({
src: '/dist/images/google.svg',
className: 'fl w1',
}),
t`Acceso con Google`,
]
)
),
Expand Down
7 changes: 7 additions & 0 deletions src/themes/autumn/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ p.md p:last-child {
color: #fff !important;
}

.btn.btn-primary.btn-google {
background: #fff !important;
border-color: #dbdbdb !important;
border-radius: 4px;
color: #000 !important;
}

.step .step-item a {
color: #777777;
}
Expand Down