Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 476dc5eb authored by Akhil's avatar Akhil
Browse files

Merge branch 'dev/nc-25' of...

parents 3e795c42 8c829e6e
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1635,11 +1635,13 @@ a.legal {
#body-login .button-vue--vue-primary{
    margin: 46px 0px;
}
.show {
.slow-show {
    opacity: 0;
    animation: fadeIn 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
+5 −3
Original line number Diff line number Diff line
@@ -7,13 +7,15 @@ document.addEventListener('DOMContentLoaded', function() {
			document.querySelector('.lines').style.display = 'none'
			document.querySelector('.v-align').classList.add('warning-message')
			document.querySelector('footer').classList.add('forgotpass-footer')
			document.querySelector('.banner-content').classList.remove('slow-show')
		} else if (event.target.matches('.lost-password-container a') && window.innerWidth > 1050) {
			document.querySelector('.banner-right-align').classList.remove('width0')
			document.querySelector('.v-align').classList.remove('warning-message')
			document.querySelector('footer').classList.remove('forgotpass-footer')
			document.querySelector('.lines').style.display = 'flex'
			document.querySelector('.banner-content').style.display = 'flex'
			document.querySelector('.have-an-account').style.display = 'flex'
			document.querySelector('.lines').style.display = 'block'
			document.querySelector('.banner-content').style.display = 'block'
			document.querySelector('.have-an-account').style.display = 'block'
			document.querySelector('.banner-content').classList.add('slow-show')
		}
	})
})