feat(FN-3398): update desktop README with multi-project setup and troublesh

The merge lands Step 7 of FN-3398, adding documentation and delivery artifacts across the mobile and desktop packages with updated READMEs, mobile-specific docs, and architecture references.

Fusion-Task-Id: FN-3398
This commit is contained in:
Fusion
2026-05-04 21:41:52 -07:00
committed by gsxdsm
parent 95ccf50397
commit 025eb7b3ae
43 changed files with 2025 additions and 398 deletions

View File

@@ -0,0 +1,32 @@
.native-shell-onboarding-modal {
width: min(100%, calc(var(--space-2xl) * 20));
}
.native-shell-onboarding-body {
display: flex;
flex-direction: column;
gap: var(--space-md);
padding: 0 var(--space-xl) var(--space-xl);
}
.native-shell-onboarding-label {
color: var(--text-muted);
font-size: 0.75rem;
letter-spacing: 0.03em;
text-transform: uppercase;
}
.native-shell-onboarding-mode-row {
display: flex;
gap: var(--space-sm);
}
@media (max-width: 768px) {
.native-shell-onboarding-modal {
width: calc(100% - var(--space-lg));
}
.native-shell-onboarding-mode-row {
flex-direction: column;
}
}