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:
@@ -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
|
||||
},
|
||||
|
Reference in New Issue
Block a user