fix minor glitch in editor when opening new note

This commit is contained in:
ammarahm-ed
2021-12-30 11:05:56 +05:00
parent 714da28c1c
commit 8d718d6c7c
3 changed files with 22 additions and 1 deletions

View File

@@ -82,3 +82,13 @@ body {
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
#infoempty {
font-family: 'Open Sans';
border-radius: 5px;
margin:0px !important;
margin-top: 0;
margin-right: 0px !important;
margin-left: 0px;
padding-top: 2.5px;
}

View File

@@ -72,6 +72,16 @@ body {
padding-top: 2.5px;
}
#infoempty {
font-family: 'Open Sans';
border-radius: 5px;
margin:0px !important;
margin-top: 0;
margin-right: 0px !important;
margin-left: 0px;
padding-top: 2.5px;
}
.visible {
display: inline-flex !important;
}

View File

@@ -30,7 +30,8 @@
<div class="info-bar">
<div style="display:flex;">
<p id="infowords"></p>
<p id="infoempty" ></p>
<p id="infowords">0 words</p>
<p style="display:none" id="infodate"></p>
<p style="display:none" id="infosaved"></p>
</div>