ruvector/studio/styles
rUv 814f595995 feat(studio): Add complete RuVector Studio application
Major additions:
- Complete Next.js studio application with 1600+ components
- Docker support (Dockerfile.combined, docker-compose.yml)
- GCP deployment documentation and benchmarks
- SQL benchmark scripts for performance testing
- Sentry integration for monitoring
- Comprehensive test suite and mocks

Studio features:
- Dashboard and admin interfaces
- Data visualization components
- Authentication and user management
- API integration with RuVector backend
- Static data and public assets

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-06 23:04:48 +00:00
..
code.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
contextMenu.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
editor.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
focus.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
graphiql-base.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
grid.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
main.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
markdown-preview.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
monaco.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
react-data-grid-logs.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
reactflow.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
README.md feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
storage.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
stripe.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
toast.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
typography.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00
ui.scss feat(studio): Add complete RuVector Studio application 2025-12-06 23:04:48 +00:00

Styles

When to write custom styles

Tailwind should be sufficient to cover the majority of styling needs. We typically only write custom styles here in the event where we're working with an external library and we need to override some styles (e.g Monaco, or even our own UI library).

Ideally, keep custom styling here to a minimum, use tailwind directly in the pages and components where possible, so that we have less code to maintain.

If you're writing custom styles

Group custom styles into separate stylesheets based on their context. For styles which are generic and global, we can write them in main.scss.