fix(web): prevent jumping the page contents on mobile when editing notes offline (#1294)

This commit is contained in:
Vardan Hakobyan
2022-07-14 11:06:06 +04:00
committed by GitHub
parent 9a297fe8cf
commit aaf68a8f73

View File

@@ -56,6 +56,7 @@ $heading-height: 75px;
&:disabled {
color: var(--editor-title-input-color);
}
&:focus {
box-shadow: none;
}
@@ -65,9 +66,12 @@ $heading-height: 75px;
#save-status-container {
position: relative;
min-width: 16ch;
max-width: 16ch;
overflow: visible;
margin-right: 20px;
@media screen and (min-width: 768px) {
max-width: 16ch;
}
}
#save-status {