Fixes the copy on new sessions, some additional styling work

This commit is contained in:
2025-06-28 17:48:56 -07:00
parent c00eb1d965
commit 6ce462a77d
20 changed files with 268 additions and 91 deletions

View File

@@ -1,11 +1,13 @@
@import "tailwindcss";
@tailwind utilities;
html, body {
html,
body {
height: 100%;
min-height: 100%;
background-color: #0f172a; /* slate-900 */
color: #f1f5f9; /* slate-100 */
font-family: 'Inter', system-ui, sans-serif;
font-family: "Inter", system-ui, sans-serif;
line-height: 1.5;
}
@@ -15,24 +17,15 @@ body {
min-width: 320px;
}
code, pre {
font-family: 'Fira Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
code,
pre {
font-family: "Fira Mono", "Menlo", "Monaco", "Consolas", monospace;
background: #1e293b; /* slate-800 */
color: #a5b4fc; /* violet-300 */
border-radius: 0.25rem;
padding: 0.2em 0.4em;
}
a {
color: #a5b4fc; /* violet-300 */
text-decoration: underline;
transition: color 0.2s;
}
a:hover, a:focus {
color: #7c3aed; /* violet-600 */
}
/* Remove default outline, but keep focus-visible for accessibility */
:focus:not(:focus-visible) {
outline: none;