Skip to content

Commit

Permalink
feat: add mobile link to notifications page (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdishman authored Sep 30, 2022
1 parent d5b31c1 commit 58fdc78
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/pages/settings/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@
<h6>Nodes and Network</h6>
<span class="bg-gray1 rounded-full p-1"><ChevronRight /></span>
</nuxt-link> -->
<nuxt-link
to="/settings/notifications"
:class="$route.name === `settings-notifications` ? `bg-lightInput font-semibold` : ``"
class="text-gray5 dark:text-gray3 focus:outline-none mb-2 flex w-full items-center justify-between rounded-lg py-2 text-left"
>
<div class="flex flex-row items-center">
<BellIcon class="w-4 h-4" />
<h6 class="ml-4">Notifications</h6>
</div>
<span class="bg-gray1 dark:bg-gray5 rounded-full p-1"><ChevronRight /></span>
</nuxt-link>
<nuxt-link
to="/settings/styling"
:class="$route.name === `settings-styling` ? `bg-lightInput font-semibold` : ``"
Expand All @@ -50,12 +61,14 @@ import Vue from 'vue'
import ChevronRight from '@/components/icons/ChevronRight.vue'
import ProfileIcon from '@/components/icons/Profile.vue'
import BrushlIcon from '@/components/icons/Brush.vue'
import BellIcon from '@/components/icons/Bell.vue'
export default Vue.extend({
components: {
ChevronRight,
ProfileIcon,
BrushlIcon,
BellIcon,
},
layout: `settings`,
head() {
Expand Down

0 comments on commit 58fdc78

Please sign in to comment.