Ivan Zagainov

Results 3 comments of Ivan Zagainov

@reslear You can bind class with style "overflow: visible!important;" to your data, responsible for displaying v-show-slide. Refering to examples for this component: `` and in styles: ` .features.overflowed { overflow:...

@phegman Yes, you're absolutely right. But, in my case, there is a problem if i have slide opened from the beginning, when page loaded. For example, on mobiles I want...

Solution: ```ts SignIn(email: string, password: string) { return this.afAuth.signInWithEmailAndPassword(email, password) .then((result) => { this.SetUserData(result.user); this.afAuth.authState.subscribe((user) => { if (user) { this.router.navigate(['dashboard']); } }) }) .catch((error) => { window.alert(error.message) }) }...