File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 30
30
<h6>Nodes and Network</h6>
31
31
<span class="bg-gray1 rounded-full p-1"><ChevronRight /></span>
32
32
</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 >
33
44
<nuxt-link
34
45
to =" /settings/styling"
35
46
:class =" $route.name === `settings-styling` ? `bg-lightInput font-semibold` : ``"
@@ -50,12 +61,14 @@ import Vue from 'vue'
50
61
import ChevronRight from ' @/components/icons/ChevronRight.vue'
51
62
import ProfileIcon from ' @/components/icons/Profile.vue'
52
63
import BrushlIcon from ' @/components/icons/Brush.vue'
64
+ import BellIcon from ' @/components/icons/Bell.vue'
53
65
54
66
export default Vue .extend ({
55
67
components: {
56
68
ChevronRight ,
57
69
ProfileIcon ,
58
70
BrushlIcon ,
71
+ BellIcon ,
59
72
},
60
73
layout: ` settings ` ,
61
74
head() {
You can’t perform that action at this time.
0 commit comments