You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The typist's cursor doesn't work properly when it has a block element i.e H1
it goes to one line bottom
import"./Home.scss";importReactfrom"react";importTypistfrom"react-typist";exportdefaultfunctionHome(){return(<divclassName="home page"><Typist><h1style={{display: "inline"}}>
Testing <bstyle={{color: "#7a5bf5"}}>Typist</b> inside an Inline
element
</h1></Typist><Typist><h1style={{marginTop: "2em"}}>
Testing <bstyle={{color: "#7a5bf5"}}>Typist</b> inside a Block
element
</h1></Typist></div>);}
The text was updated successfully, but these errors were encountered:
I'm also struggling with it. Did you find any solution?
You could check issue #82.
I used a temporary solution just setting CSS property of block elements to inline-block and then used line-breaks to write on a new line.
The typist's cursor doesn't work properly when it has a block element i.e H1
it goes to one line bottom
The text was updated successfully, but these errors were encountered: