aef8791151
- Added Appshell component with responsive navbar and main content area - Integrated ColorSchemeToggle for light/dark mode switching - Created Welcome component with styled title and introductory text - Developed ChatPage for LLM interaction with WebSocket support - Implemented Biblioteca for managing notes with rich text editor - Added LoginPage for user authentication with error handling - Introduced MessageList and MessageBubble components for chat messages - Styled components with CSS modules for consistent design
11 lines
240 B
CSS
11 lines
240 B
CSS
.title {
|
|
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
|
|
font-size: rem(100px);
|
|
font-weight: 900;
|
|
letter-spacing: rem(-2px);
|
|
|
|
@media (max-width: $mantine-breakpoint-md) {
|
|
font-size: rem(50px);
|
|
}
|
|
}
|