Files
professor/app/globals.css
Aodhan Collins f644937604 Initial commit — AI-powered coding tutor (Professor)
Next.js 16, React 19, Monaco editor, Anthropic SDK, multi-provider AI,
Wandbox Python execution, iframe HTML preview, SQLite auth + session persistence.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-04 21:48:34 +00:00

39 lines
557 B
CSS

@import "tailwindcss";
:root {
--background: #09090b;
--foreground: #fafafa;
}
html,
body {
height: 100%;
overflow: hidden;
background: var(--background);
color: var(--foreground);
}
/* Scrollbar styling */
* {
scrollbar-width: thin;
scrollbar-color: #3f3f46 transparent;
}
*::-webkit-scrollbar {
width: 6px;
height: 6px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: #3f3f46;
border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #52525b;
}