Fixes the copy on new sessions, some additional styling work
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user