1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

Flexbox for auth UI

Providing better support for flaky IE/Edge browsers.
This commit is contained in:
sauls8t 2018-06-29 16:06:50 +01:00
parent 10a184ad10
commit 4130d1f129
10 changed files with 70 additions and 47 deletions

View file

@ -19,10 +19,10 @@ export default Route.extend({
activate() {
this.get('browser').setTitleAsPhrase('Reset Password');
$('body').addClass('background-color-theme-light');
$('body').addClass('background-color-theme-light d-flex justify-content-center align-items-center');
},
deactivate() {
$('body').removeClass('background-color-theme-light');
$('body').removeClass('background-color-theme-light d-flex justify-content-center align-items-center');
}
});