mirror of
https://github.com/taskgenius/taskgenius-plugin.git
synced 2026-07-22 06:40:25 +00:00
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:
parent
17545ed33c
commit
a1b12c94dc
3 changed files with 4 additions and 6 deletions
|
|
@ -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",
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Reference in a new issue