|
|
@@ -1,25 +1,25 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
|
-nav#main-header.w-flex.row.xs12
|
|
|
2
|
+w-toolbar.mt6.py1.no-grow(bottom)
|
|
3
|
3
|
router-link.w-flex.column(:to='`/chats`')
|
|
4
|
|
- w-button.pa8.bdrsr.bd1.sh1(bg-color='primary' disabled)
|
|
|
4
|
+ w-button.pa5.bdrsr.bd1.sh1(bg-color='primary' disabled)
|
|
5
|
5
|
w-icon.mr1(xl) mdi mdi-forum
|
|
6
|
|
- h3.text-upper chats
|
|
|
6
|
+ p.text-upper chats
|
|
7
|
7
|
router-link.w-flex.column(:to='`/matches`')
|
|
8
|
|
- w-button.pa8.bdrsr.bd1.sh1(bg-color='primary')
|
|
|
8
|
+ w-button.pa5.bdrsr.bd1.sh1(bg-color='primary')
|
|
9
|
9
|
w-icon.mr1(xl) mdi mdi-tooltip-account
|
|
10
|
|
- h3.text-upper matches
|
|
|
10
|
+ p.text-upper matches
|
|
11
|
11
|
router-link.w-flex.column(:to='`/`')
|
|
12
|
|
- w-button.pa8.bdrsr.bd1.sh1(bg-color='primary')
|
|
|
12
|
+ w-button.pa5.bdrsr.bd1.sh1(bg-color='primary')
|
|
13
|
13
|
w-icon.mr1(xl) mdi mdi-home
|
|
14
|
|
- h3.text-upper home
|
|
|
14
|
+ p.text-upper home
|
|
15
|
15
|
router-link.w-flex.column(:to='`/survey`')
|
|
16
|
|
- w-button.pa8.bdrsr.bd1.sh1(bg-color='primary')
|
|
|
16
|
+ w-button.pa5.bdrsr.bd1.sh1(bg-color='primary')
|
|
17
|
17
|
w-icon.mr1(xl) mdi mdi-account-check
|
|
18
|
|
- h3.text-upper survey
|
|
|
18
|
+ p.text-upper survey
|
|
19
|
19
|
router-link.w-flex.column(:to='`/settings`')
|
|
20
|
|
- w-button.pa8.bdrsr.bd1.sh1(bg-color='primary' disabled)
|
|
|
20
|
+ w-button.pa5.bdrsr.bd1.sh1(bg-color='primary' disabled)
|
|
21
|
21
|
w-icon.mr1(xl) mdi mdi-cog
|
|
22
|
|
- h3.text-upper settings
|
|
|
22
|
+ p.text-upper settings
|
|
23
|
23
|
</template>
|
|
24
|
24
|
|
|
25
|
25
|
<script>
|
|
|
@@ -29,9 +29,3 @@ export default {
|
|
29
|
29
|
name: 'MainNav',
|
|
30
|
30
|
}
|
|
31
|
31
|
</script>
|
|
32
|
|
-
|
|
33
|
|
-<style lang="sass">
|
|
34
|
|
-nav#main-header
|
|
35
|
|
- position: absolute
|
|
36
|
|
- bottom: 15vh
|
|
37
|
|
-</style>
|