Remove gap between words when invisible

This commit is contained in:
Mike Pearson 2026-01-01 14:36:11 -07:00 committed by GitHub
parent 047ee2e7f3
commit 52b8a5ebfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,16 +13,16 @@
.show-on-hover {
cursor: pointer;
opacity: 0;
display: none;
}
/* Source Mode */
.cm-line:hover .show-on-hover {
opacity: 1;
display: inline;
}
/* Reading Mode */
code:hover .show-on-hover {
opacity: 1;
display: inline;
}
.tasks-setting-important {
@ -50,4 +50,4 @@ code:hover .show-on-hover {
.invalid-preview-icon {
color: var(--text-error) !important;
}
}