diff --git a/app/components/SimpleEditor/panes/Notes/notes.scss b/app/components/SimpleEditor/panes/Notes/notes.scss index 22571beb2c67e6a03e01b187cbf8770bd0930602..c092ba00964322eb7da6c9d81052eed0537d5f65 100644 --- a/app/components/SimpleEditor/panes/Notes/notes.scss +++ b/app/components/SimpleEditor/panes/Notes/notes.scss @@ -3,6 +3,7 @@ $white: #fff; .notes-container { background-color: $white; bottom: 0; + counter-reset: note-footer; height: 95px; left: 130px; max-height: 700px; @@ -23,4 +24,10 @@ $white: #fff; .sc-isolated-node { border: 1px solid red!important; } + .sc-isolated-node::before { + content: ''counter(note-footer)'. '; + counter-increment: note-footer; + left: -40px; + position: absolute; +} }