Initialize the NebulaOS monorepo layout with top-level documentation, ignore rules, placeholder service/package directories, compositor docs plus a baseline Sway config, and session startup/desktop entry files. Add the first desktop shell prototype under `shells/desktop/ui` using React + Vite, including themed surface components (desktop, top bar, launcher, preview), mock Nebula APIs and shell bridge state wiring, reusable UI controls/icons, and supporting styles/config needed for local development.
20 lines
363 B
CSS
20 lines
363 B
CSS
.system-area {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
}
|
|
|
|
.clock {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
min-width: 7.4em;
|
|
height: 28px;
|
|
margin-left: 4px;
|
|
padding: 0 8px;
|
|
border-radius: var(--nebula-radius-small);
|
|
color: var(--nebula-text);
|
|
font-variant-numeric: tabular-nums;
|
|
letter-spacing: 0.01em;
|
|
white-space: nowrap;
|
|
}
|