Skip to content

Commit 2c15b0a

Browse files
committed
Merge branch 'help-page' into dev
2 parents 0d8c942 + 82dc6ae commit 2c15b0a

File tree

15 files changed

+244
-1
lines changed

15 files changed

+244
-1
lines changed

apps/client/components.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ declare module '@vue/runtime-core' {
1919
DisplayBtn: typeof import('./src/components/DisplayBtn.vue')['default']
2020
EvaluatedPasswordField: typeof import('./src/components/EvaluatedPasswordField.vue')['default']
2121
Gap: typeof import('./src/components/Gap.vue')['default']
22+
InlineGap: typeof import('./src/components/InlineGap.vue')['default']
2223
LinkURL: typeof import('./src/components/LinkURL.vue')['default']
2324
LoadingOverlay: typeof import('./src/components/LoadingOverlay.vue')['default']
2425
MiniSidebarBtn: typeof import('./src/components/MiniSidebarBtn.vue')['default']
10.1 KB
Loading
16.5 KB
Loading
28 KB
Loading
20.9 KB
Loading
15.1 KB
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<template>
2+
<div class="inline-gap"></div>
3+
</template>
4+
5+
<style scoped>
6+
.inline-gap {
7+
display: inline-block;
8+
}
9+
</style>

apps/client/src/layouts/HomeLayout/Header/Header.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,19 @@
124124
: undefined,
125125
}"
126126
/>
127+
128+
<Gap style="width: 12px" />
129+
130+
<DeepBtn
131+
label="Help"
132+
flat
133+
class="toolbar-btn"
134+
:to="{ name: 'help' }"
135+
:style="{
136+
'background-color':
137+
$route.name === 'help' ? 'rgba(255,255,255,0.15)' : undefined,
138+
}"
139+
/>
127140
</template>
128141

129142
<q-space />

apps/client/src/layouts/HomeLayout/Header/RightButtons/RightButtons.vue

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@
2525
style="height: 46px"
2626
>
2727
<span style="font-weight: bold">Go to pages</span>
28-
<span style="margin-left: 3px; font-weight: bold; font-size: 1.3em">
28+
<span
29+
style="
30+
position: relative;
31+
top: -1px;
32+
margin-left: 3px;
33+
font-weight: bold;
34+
font-size: 1.3em;
35+
"
36+
>
2937
3038
</span>
3139
</DeepBtn>

apps/client/src/layouts/HomeLayout/Header/RightButtons/RightMenu.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,16 @@
105105
</q-item-section>
106106
<q-item-section>Whitepaper</q-item-section>
107107
</q-item>
108+
109+
<q-item
110+
clickable
111+
:to="{ name: 'help' }"
112+
>
113+
<q-item-section avatar>
114+
<q-icon name="mdi-help" />
115+
</q-item-section>
116+
<q-item-section>Help</q-item-section>
117+
</q-item>
108118
</template>
109119

110120
<template v-if="uiStore().loggedIn">

0 commit comments

Comments
 (0)