Improved empty board

This commit is contained in:
Gamebrary 2020-10-13 17:11:08 -07:00
parent 8e60a23548
commit 5de1f7dc45

View file

@ -0,0 +1,24 @@
<template lang="html">
<b-jumbotron class="empty-board w-100 text-center">
<p>This board is empty</p>
<b-button variant="primary" @click="openAddListModal">
Add list
</b-button>
</b-jumbotron>
</template>
<script>
export default {
methods: {
openAddListModal() {
this.$bvModal.show('add-list');
},
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.empty-board {
max-width: 300px;
}
</style>