19 lines
306 B
CSS
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;
|
|
}
|
|
}
|