Updated to later version of vue cli to improve build process

* Updated some simples styles
* Added archive button to main notes
fixes #21
This commit is contained in:
Max G
2020-03-11 03:47:07 +00:00
parent 282cbfe7bc
commit 3ed26bcc03
15 changed files with 12003 additions and 74 deletions

View File

@@ -33,6 +33,12 @@
overflow: hidden;
cursor: pointer;
}
.slide-shadow.full-shadow {
right: 0;
background-color: rgba(0,0,0,0.3);
}
.note-menu {
height: 43px;
}
@@ -88,7 +94,7 @@
</div>
<div class="slide-shadow" v-on:click="close"></div>
<div class="slide-shadow" :class="{'full-shadow':fullShadow}" v-on:click="close"></div>
</div>
</transition>
@@ -97,7 +103,7 @@
<script>
export default {
name: 'SideSlideMenu',
props: [ 'name', 'styleObject' ],
props: [ 'name', 'styleObject', 'fullShadow' ],
components: {
'nm-button':require('@/components/NoteMenuButtonComponent.vue').default
},