Update globals.css

This commit is contained in:
MacRimi
2025-11-22 20:09:36 +01:00
parent 06f97b671f
commit cfed460eba

View File

@@ -141,7 +141,7 @@
/* ===================== */ /* ===================== */
/* Base Styles */ /* Base Styles */
/* ===================== */ /* ===================== */
/* Removed @layer base and converted @apply to native CSS for Tailwind v4 compatibility */ /* Removed @layer and converted to native CSS for Tailwind v4 compatibility */
* { * {
border-color: var(--border); border-color: var(--border);
outline-color: color-mix(in oklch, var(--ring), transparent 50%); outline-color: color-mix(in oklch, var(--ring), transparent 50%);
@@ -165,7 +165,7 @@ body {
/* ===================== */ /* ===================== */
/* Ajustes para Charts */ /* Ajustes para Charts */
/* ===================== */ /* ===================== */
@layer components { /* Removed @layer components and converted to native CSS */
/* Recharts axis */ /* Recharts axis */
.recharts-cartesian-axis-tick tspan { .recharts-cartesian-axis-tick tspan {
fill: var(--muted-foreground); fill: var(--muted-foreground);
@@ -183,7 +183,10 @@ body {
stroke: var(--border); stroke: var(--border);
} }
/* Fix xterm.js padding and centering issues */ /* ===================== */
/* Terminal Fixes */
/* ===================== */
/* Fix xterm.js padding and centering issues for dialog menus */
.xterm { .xterm {
padding: 0 !important; padding: 0 !important;
margin: 0 !important; margin: 0 !important;
@@ -212,4 +215,3 @@ body {
top: 0; top: 0;
left: 0; left: 0;
} }
}