Files
fusion/packages/dashboard/app/components/NativeShellConnectionStatus.css
2026-05-22 17:24:38 -07:00

19 lines
306 B
CSS

.native-shell-status {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
}
.native-shell-status__label {
max-width: 18ch;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (max-width: 768px) {
.native-shell-status__label {
max-width: 12ch;
}
}