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
42 lines
847 B
CSS
42 lines
847 B
CSS
.native-shell-connection-manager {
|
|
width: min(100%, 42rem);
|
|
}
|
|
|
|
.native-shell-connection-manager__mode-row {
|
|
display: flex;
|
|
gap: var(--space-sm);
|
|
padding: 0 var(--space-xl) var(--space-md);
|
|
}
|
|
|
|
.native-shell-connection-manager__profiles {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
padding: 0 var(--space-xl);
|
|
max-height: 16rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
.native-shell-connection-manager__profile {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.native-shell-connection-manager__profile-actions {
|
|
display: inline-flex;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.native-shell-connection-manager__editor {
|
|
padding-top: var(--space-lg);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.native-shell-connection-manager__profile {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|