Skip to content

Commit 58fdc78

Browse files
authored
feat: add mobile link to notifications page (#1178)
1 parent d5b31c1 commit 58fdc78

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/pages/settings/index.vue

+13
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@
3030
<h6>Nodes and Network</h6>
3131
<span class="bg-gray1 rounded-full p-1"><ChevronRight /></span>
3232
</nuxt-link> -->
33+
<nuxt-link
34+
to="/settings/notifications"
35+
:class="$route.name === `settings-notifications` ? `bg-lightInput font-semibold` : ``"
36+
class="text-gray5 dark:text-gray3 focus:outline-none mb-2 flex w-full items-center justify-between rounded-lg py-2 text-left"
37+
>
38+
<div class="flex flex-row items-center">
39+
<BellIcon class="w-4 h-4" />
40+
<h6 class="ml-4">Notifications</h6>
41+
</div>
42+
<span class="bg-gray1 dark:bg-gray5 rounded-full p-1"><ChevronRight /></span>
43+
</nuxt-link>
3344
<nuxt-link
3445
to="/settings/styling"
3546
:class="$route.name === `settings-styling` ? `bg-lightInput font-semibold` : ``"
@@ -50,12 +61,14 @@ import Vue from 'vue'
5061
import ChevronRight from '@/components/icons/ChevronRight.vue'
5162
import ProfileIcon from '@/components/icons/Profile.vue'
5263
import BrushlIcon from '@/components/icons/Brush.vue'
64+
import BellIcon from '@/components/icons/Bell.vue'
5365
5466
export default Vue.extend({
5567
components: {
5668
ChevronRight,
5769
ProfileIcon,
5870
BrushlIcon,
71+
BellIcon,
5972
},
6073
layout: `settings`,
6174
head() {

0 commit comments

Comments
 (0)