feat(onboarding): improve layout flexibility and refine copy

- Update subtitle text for better conversational flow
- Remove fixed height from mode-card-preview for flexible content
- Make intro-typing-wrapper responsive with max(900px, 70%)
This commit is contained in:
Quorafind 2025-10-01 20:18:46 +08:00
parent 17545ed33c
commit a1b12c94dc
3 changed files with 4 additions and 6 deletions

View file

@ -237,7 +237,7 @@ export class OnboardingView extends ItemView {
// Header
this.onboardingHeaderEl.createEl("h1", {text: t("Task Genius Setup")});
this.onboardingHeaderEl.createEl("p", {
text: t("We noticed you've already configured Task Genius"),
text: t("Oh, We noticed you've already configured Task Genius before."),
cls: "onboarding-subtitle",
});

View file

@ -1260,7 +1260,6 @@
}
.mode-card-preview {
height: 140px;
background: var(--background-secondary);
border-radius: var(--radius-s);
margin-bottom: var(--size-4-3);
@ -1430,7 +1429,7 @@
/* Wrapper to prevent layout shift */
.intro-typing-wrapper {
width: 100%;
max-width: 900px;
max-width: max(900px, 70%);
margin: 0 auto;
}

File diff suppressed because one or more lines are too long