fix: improve the style for the web

This commit is contained in:
2026-08-28 21:07:04 +07:00
parent 3dcc812cd4
commit dfc7002135
14 changed files with 1232 additions and 119 deletions
+118 -43
View File
@@ -1,5 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import 'tailwindcss';
@import 'tw-animate-css';
@import 'shadcn/tailwind.css';
@custom-variant dark (&:is(.dark *));
:root {
font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
@@ -8,13 +12,45 @@
font-synthesis: none;
text-rendering: optimizeLegibility;
--primary: #3ecf8e;
--shadcn-primary: oklch(0.205 0 0);
--primary-deep: #24b47e;
--ink: #171717;
--muted: #707070;
--shadcn-muted: oklch(0.97 0 0);
--faint: #9a9a9a;
--hairline: #dfdfdf;
--soft: #fafafa;
--night: #1c1c1c;
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);
--card: oklch(1 0 0);
--card-foreground: oklch(0.145 0 0);
--popover: oklch(1 0 0);
--popover-foreground: oklch(0.145 0 0);
--primary-foreground: oklch(0.985 0 0);
--secondary: oklch(0.97 0 0);
--secondary-foreground: oklch(0.205 0 0);
--muted-foreground: oklch(0.556 0 0);
--accent: oklch(0.97 0 0);
--accent-foreground: oklch(0.205 0 0);
--destructive: oklch(0.577 0.245 27.325);
--border: oklch(0.922 0 0);
--input: oklch(0.922 0 0);
--ring: oklch(0.708 0 0);
--chart-1: oklch(0.87 0 0);
--chart-2: oklch(0.556 0 0);
--chart-3: oklch(0.439 0 0);
--chart-4: oklch(0.371 0 0);
--chart-5: oklch(0.269 0 0);
--radius: 0.625rem;
--sidebar: oklch(0.985 0 0);
--sidebar-foreground: oklch(0.145 0 0);
--sidebar-primary: oklch(0.205 0 0);
--sidebar-primary-foreground: oklch(0.985 0 0);
--sidebar-accent: oklch(0.97 0 0);
--sidebar-accent-foreground: oklch(0.205 0 0);
--sidebar-border: oklch(0.922 0 0);
--sidebar-ring: oklch(0.708 0 0);
}
* {
@@ -253,35 +289,6 @@ button {
color: var(--faint);
}
.monitor-form-panel {
margin-top: 24px;
padding: 28px;
border: 1px solid #dcdcdc;
border-radius: 8px;
background: #fff;
box-shadow: 0 8px 28px rgb(29 74 54 / 0.06);
}
.form-panel-heading {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 32px;
padding-bottom: 24px;
border-bottom: 1px solid #ededed;
}
.form-panel-heading h2 {
margin: 0;
font-size: 22px;
font-weight: 500;
letter-spacing: -0.4px;
}
.form-panel-heading > p {
max-width: 480px;
margin: 0;
font-size: 13px;
line-height: 1.55;
color: var(--muted);
}
.monitor-form {
display: grid;
grid-template-columns: repeat(4, 1fr);
@@ -575,7 +582,7 @@ button {
}
.row-actions {
display: grid;
grid-template-columns: auto auto repeat(3, 34px);
grid-template-columns: auto auto repeat(3, 38px);
justify-content: space-between;
justify-self: stretch;
width: 100%;
@@ -587,11 +594,11 @@ button {
justify-content: center;
gap: 6px;
min-width: 0;
min-height: 34px;
padding: 6px 10px;
min-height: 38px;
padding: 7px 12px;
border: 1px solid transparent;
border-radius: 6px;
font-size: 11px;
font-size: 12px;
font-weight: 500;
line-height: 1;
color: #626262;
@@ -606,12 +613,12 @@ button {
}
.row-action svg {
flex: 0 0 auto;
width: 14px;
height: 14px;
width: 15px;
height: 15px;
stroke-width: 1.8;
}
.row-action-icon {
width: 34px;
width: 38px;
padding: 0;
}
.row-action:hover:not(:disabled) {
@@ -1920,13 +1927,6 @@ button {
.metric-card p {
margin-bottom: 12px;
}
.monitor-form-panel {
padding: 20px;
}
.form-panel-heading {
flex-direction: column;
gap: 12px;
}
.monitor-form {
grid-template-columns: 1fr;
}
@@ -2138,3 +2138,78 @@ button {
transition-duration: 0.01ms !important;
}
}
@theme inline {
--color-sidebar-ring: var(--sidebar-ring);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar: var(--sidebar);
--color-chart-5: var(--chart-5);
--color-chart-4: var(--chart-4);
--color-chart-3: var(--chart-3);
--color-chart-2: var(--chart-2);
--color-chart-1: var(--chart-1);
--color-ring: var(--ring);
--color-input: var(--input);
--color-border: var(--border);
--color-destructive: var(--destructive);
--color-accent-foreground: var(--accent-foreground);
--color-accent: var(--accent);
--color-muted-foreground: var(--muted-foreground);
--color-muted: var(--shadcn-muted);
--color-secondary-foreground: var(--secondary-foreground);
--color-secondary: var(--secondary);
--color-primary-foreground: var(--primary-foreground);
--color-primary: var(--shadcn-primary);
--color-popover-foreground: var(--popover-foreground);
--color-popover: var(--popover);
--color-card-foreground: var(--card-foreground);
--color-card: var(--card);
--color-foreground: var(--foreground);
--color-background: var(--background);
--radius-sm: calc(var(--radius) * 0.6);
--radius-md: calc(var(--radius) * 0.8);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) * 1.4);
--radius-2xl: calc(var(--radius) * 1.8);
--radius-3xl: calc(var(--radius) * 2.2);
--radius-4xl: calc(var(--radius) * 2.6);
}
.dark {
--background: oklch(0.145 0 0);
--foreground: oklch(0.985 0 0);
--card: oklch(0.205 0 0);
--card-foreground: oklch(0.985 0 0);
--popover: oklch(0.205 0 0);
--popover-foreground: oklch(0.985 0 0);
--shadcn-primary: oklch(0.922 0 0);
--primary-foreground: oklch(0.205 0 0);
--secondary: oklch(0.269 0 0);
--secondary-foreground: oklch(0.985 0 0);
--shadcn-muted: oklch(0.269 0 0);
--muted-foreground: oklch(0.708 0 0);
--accent: oklch(0.269 0 0);
--accent-foreground: oklch(0.985 0 0);
--destructive: oklch(0.704 0.191 22.216);
--border: oklch(1 0 0 / 10%);
--input: oklch(1 0 0 / 15%);
--ring: oklch(0.556 0 0);
--chart-1: oklch(0.87 0 0);
--chart-2: oklch(0.556 0 0);
--chart-3: oklch(0.439 0 0);
--chart-4: oklch(0.371 0 0);
--chart-5: oklch(0.269 0 0);
--sidebar: oklch(0.205 0 0);
--sidebar-foreground: oklch(0.985 0 0);
--sidebar-primary: oklch(0.488 0.243 264.376);
--sidebar-primary-foreground: oklch(0.985 0 0);
--sidebar-accent: oklch(0.269 0 0);
--sidebar-accent-foreground: oklch(0.985 0 0);
--sidebar-border: oklch(1 0 0 / 10%);
--sidebar-ring: oklch(0.556 0 0);
}