@endlessblink/like-i-said-v2
Version:
Task Management & Memory for Claude - Track tasks, remember context, and maintain continuity across sessions with 27 powerful tools. Works with Claude Desktop and Claude Code.
32 lines (27 loc) • 678 B
CSS
/* Theme Reset CSS - Applied before Tailwind */
/* This ensures proper theme application */
/* Reset any conflicting styles */
* {
transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
/* Ensure root variables are properly scoped */
:root {
/* Color mode aware */
color-scheme: dark;
}
/* Force theme colors on core elements */
html {
background-color: hsl(var(--background));
color: hsl(var(--foreground));
}
body {
background-color: inherit;
color: inherit;
min-height: 100vh;
}
/* Ensure proper inheritance */
#root {
min-height: 100vh;
background-color: transparent;
color: inherit;
}