Skip to content

Commit e2a4cc7

Browse files
committed
fixed
Signed-off-by: RAWx18 <rawx18.dev@gmail.com>
1 parent aee0283 commit e2a4cc7

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

backend/src/types/quickstartGuideTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const enrichMemberGuide: QuickstartGuide = {
6464
}
6565

6666
const viewReportGuide: QuickstartGuide = {
67-
title: 'Look into reports',
67+
title: 'Look into DevTel reports',
6868
body: 'Explore ready-made reports for deeper community insights.',
6969
videoLink: '', // Video to be added later
7070
learnMoreLink: '', // Video to be added later

frontend/src/modules/dashboard/components/dashboard-active-integrations.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
<div v-if="!loadingFetch" class="pt-3">
162162
<router-link :to="{ name: 'integration' }" route>
163163
<el-button
164-
class="btn btn-brand--transparent btn--sm w-full leading-5"
164+
class="btn btn-brand--transparent btn--sm w-full leading-5 hover:bg-zinc-950"
165165
>
166166
<span
167167
v-if="activeIntegrations.length > 0"

frontend/src/modules/dashboard/components/dashboard-guides.vue

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,15 @@ const dismissGuides = () => {
121121
title:
122122
'Do you really want to dismiss our Quickstart Guide?',
123123
message:
124-
'Users that follow our Quickstart Guide are 80% more likely to successfully set-up gitmesh.dev.',
124+
'Users that follow our Quickstart Guide are more likely to successfully set-up GitMesh.',
125125
icon: 'ri-information-line',
126-
confirmButtonText: 'Dismiss quickstart guide',
126+
confirmButtonText: 'Dismiss',
127127
cancelButtonText: 'Cancel',
128+
// Use vertical layout so content, icon and buttons stack nicely
129+
vertical: true,
130+
// Improve typography inside the terminal dialog
131+
titleClass: 'text-white font-mono text-sm font-bold uppercase tracking-wider pt-2',
132+
messageClass: 'text-zinc-300 font-mono text-xs leading-relaxed mt-1',
128133
}).then(() => {
129134
TenantEventService.event({
130135
name: 'Onboarding Guide dismissed',

frontend/src/shared/dialog/confirm-dialog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default ({
1515
customClass = 'terminal-dialog',
1616
cancelButtonText = 'CANCEL',
1717
// Default Terminal Cancel Button
18-
cancelButtonClass = 'h-10 px-4 bg-black border border-zinc-700 hover:border-zinc-500 text-zinc-400 hover:text-white font-mono text-xs uppercase tracking-wider transition-colors w-full rounded-none',
18+
cancelButtonClass = 'h-10 px-4 bg-black hover:bg-black border border-zinc-700 hover:border-zinc-500 text-zinc-400 hover:text-white font-mono text-xs uppercase tracking-wider transition-colors w-full rounded-none',
1919
confirmButtonText = 'CONFIRM',
2020
// Default Terminal Confirm Button
2121
confirmButtonClass = 'h-10 px-4 bg-orange-600 hover:bg-orange-500 text-black font-mono text-xs font-bold uppercase tracking-wider border-none w-full rounded-none',
@@ -47,7 +47,7 @@ export default ({
4747
iconBgColorClass = 'bg-emerald-950/30 border border-emerald-900';
4848
} else if (type === 'notification') {
4949
iconColorClass = 'text-blue-500';
50-
iconBgColorClass = 'bg-blue-950/30 border border-blue-900';
50+
iconBgColorClass = 'bg-blue-950/30';
5151
}
5252

5353
// 2. Icon Render Function (Sharp corners, dark bg)

0 commit comments

Comments
 (0)