Minor Style Tweaks

* Changed the way the note menus display
* Added a blank note indicator text
* Added date created and date updated text to bottom of note

fixes #18
fixes #5
This commit is contained in:
Max G
2020-02-26 05:35:43 +00:00
parent 99b69c234f
commit a478cbe11c
5 changed files with 100 additions and 16 deletions

View File

@@ -33,6 +33,10 @@
</span>
</span>
<div v-if="note.title == '' && note.subtext == ''">
Empty Note
</div>
<!-- Title display -->
<div v-if="note.title.length > 0"
@@ -105,6 +109,7 @@
},
methods:{
cardClicked(){
// console.log(this.note)
this.beenClicked = true
this.onClick(this.note.id)
},