Files
fusion/packages/dashboard/app/components/NativeShellOnboardingModal.css
Fusion 025eb7b3ae 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
2026-05-04 22:17:10 -07:00

33 lines
635 B
CSS

.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;
}
}