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
fix(cursor): Fix block focus events when using a browser zoom. There were rounding issues
Safari still has an issue with newlines at the end of an html element.
This doesn't work:
```html
<p>
Hello
</p>
<p>
World
</p>
```
And this is working:
```html
<p>Hello</p>
<p>World</p>
```
0 commit comments