1
1
mirror of https://github.com/varkor/quiver.git synced 2024-09-11 05:46:13 +03:00

Fix an issue with the insertion point not disappearing when the cursor is moved

This commit is contained in:
varkor 2020-02-13 00:48:42 +00:00
parent 84307e6cac
commit 0a1bff5fa9

View File

@ -110,7 +110,7 @@ body {
.insertion-point {
display: block;
position: absolute;
width: var(--cell-size); height: var(--cell-size);
width: calc(var(--cell-size) - 2px); height: calc(var(--cell-size) - 2px);
transform: translate(-50%, -50%);
background: hsla(0, 0%, 0%, 0);