Skip to content

Commit

Permalink
Update contact info
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed May 13, 2017
1 parent 8c8c433 commit bb7422f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
6 changes: 4 additions & 2 deletions src/components/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
v-show="isActive"
class="dropdown__menu">
<template v-if="user">
<li @click="onUpgrade">Upgrade to Pro</li>
<li @click="onFeedback">Feedback?</li>
<li @click="onLogOut">Log Out</li>
</template>
<template v-else>
Expand Down Expand Up @@ -58,8 +58,10 @@ export default {
this.isActive = false
},
onUpgrade () {
onFeedback () {
const url = 'https://meagher.typeform.com/to/EXwPlY'
this.hideDropdown()
window.open(url)
},
onLogOut () {
Expand Down
5 changes: 4 additions & 1 deletion src/components/Foot/FootActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,13 @@ export default {
'Simplicity is the ultimate sophistication.',
'This is your moment of glory.',
'Even elephants do slip.',
'Be yourself; everyone else is already taken.',
'True will is wishing backed by power.',
'I never learned anything while I was talking.',
'Do things that have never been done.',
'The details are not the details. They make the design.'
'The details are not the details. They make the design.',
'Love all, trust a few, do wrong to none.',
'Everything you can imagine is real.'
]
}),
Expand Down
7 changes: 4 additions & 3 deletions src/components/Foot/Index.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<template>
<footer class="foot">
<foot-share-note v-if="showShareNote && activeNote"
@onDone="onShareNote">
<foot-share-note
v-if="showShareNote && activeNote"
@onDone="onShareNote">
</foot-share-note>

<foot-actions v-else
@onShareNote="onShareNote">
@onShareNote="onShareNote">
</foot-actions>

</footer>
Expand Down
8 changes: 6 additions & 2 deletions src/scss/_home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -220,13 +220,13 @@
}

&__subline {
max-width: 40rem;
max-width: 45rem;
line-height: 1.5;
text-align: center;
color: palette(black);
font: {
family: $sans-serif;
size: 1.5rem;
size: 1.7rem;
}
margin-bottom: 0;
padding-bottom: 2rem;
Expand All @@ -238,6 +238,10 @@
font-weight: 700;
transition: background-color $transition;
}

@media screen and (max-width: $sm) {
font-size: 1.5rem;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<div>
<a
href="mailto:tom@meagher.co"
href="mailto:yo@notational.co"
class="home__nav__button">
Contact
</a>
Expand Down

0 comments on commit bb7422f

Please sign in to comment.