Skip to content

Commit

Permalink
Added line break to welcome message
Browse files Browse the repository at this point in the history
  • Loading branch information
nwittwer committed Jan 6, 2019
1 parent 9a3d450 commit 7d710a0
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/components/Artboards.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/>
</div>
<div class="empty-state" v-else>
<p>👋 Welcome to Shift! Click the "+" button to create your first screen size.</p>
<p>👋 Welcome to Shift!<br/> Click the "+" button to create your first screen size.</p>
<NewArtboardButton @add="add"/>
</div>
</template>
Expand Down Expand Up @@ -44,21 +44,13 @@ export default {
this.$store.commit("removeArtboard", id);
// TODO: Add test for deleting multiple selected artboards
// eslint-disable-next-line
// console.log(id);
// function filterArtboards(artboards) {
// return artboards.filter(artboard => {
// // eslint-disable-next-line
// console.log(artboard);
// // return artboard.state.isSelected
// });
// }
// eslint-disable-next-line
// console.log(filterArtboards(this.artboards));
// eslint-disable-next-line
// console.log(this.$refs.artboard[id]);
},
resize(artboard) {
this.$store.commit("resizeArtboard", artboard);
Expand Down Expand Up @@ -93,6 +85,7 @@ export default {
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
.button-new-artboard {
position: relative;
Expand Down

0 comments on commit 7d710a0

Please sign in to comment.