feat: ship native boss android console

This commit is contained in:
kris
2026-03-26 23:16:56 +08:00
parent 90e904814d
commit 90cb6b7ff1
261 changed files with 40051 additions and 135 deletions

View File

@@ -1,26 +1,58 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--boss-bg: #f5f5f7;
--boss-card: #ffffff;
--boss-border: #e5e5ea;
--boss-text: #111111;
--boss-subtle: #8c8c8c;
--boss-green: #07c160;
--boss-green-soft: #eaf7f0;
--boss-abnormal: #ff4d4f;
--boss-offline: #b8b8b8;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
* {
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
html,
body {
min-height: 100%;
height: 100%;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
margin: 0;
min-height: 100dvh;
background-color: #eef2eb;
background-image: url("/boss-app-bg.svg");
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
color: var(--boss-text);
font-family:
-apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue",
Helvetica, Arial, sans-serif;
overflow-x: hidden;
}
a {
color: inherit;
text-decoration: none;
}
button,
input,
textarea {
font: inherit;
}
.boss-scrollbar::-webkit-scrollbar {
width: 6px;
}
.boss-scrollbar::-webkit-scrollbar-thumb {
background: rgba(17, 17, 17, 0.12);
border-radius: 999px;
}