mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 13:54:31 +00:00
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>
63 lines
1.2 KiB
CSS
63 lines
1.2 KiB
CSS
.graphiqlContainer .graphiqlSessions {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlSession {
|
|
padding: 0;
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlEditors {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlEditors:global(.full-height) {
|
|
margin-top: calc(0px - var(--session-header-height));
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlQueryEditor {
|
|
@apply border-b border-default;
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlSessionHeader {
|
|
background-color: hsl(var(--color-base));
|
|
@apply border-b border-default;
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlResponseSingleTab {
|
|
margin-top: calc(24px - var(--session-header-height));
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlResponseMultiTab {
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.graphiqlContainer .graphiqlSidebar {
|
|
@apply border-l border-default;
|
|
}
|
|
|
|
.graphiqlHorizontalDragBar {
|
|
@apply border-l border-default;
|
|
}
|
|
|
|
.graphiqlAddTabWrapper {
|
|
padding: var(--px-12);
|
|
@apply z-10;
|
|
}
|
|
|
|
/* Variables */
|
|
|
|
:global(body.graphiql-dark) .graphiqlContainer {
|
|
--color-base: 0, 0%, 11%;
|
|
--color-primary: 153, 50%, 50%;
|
|
}
|
|
|
|
:global(body.graphiql-light) .graphiqlContainer {
|
|
--color-base: 210, 17%, 98%;
|
|
--color-primary: 153, 50%, 50%;
|
|
}
|
|
|
|
.graphiqlContainer {
|
|
--font-family: theme(fontFamily.sans);
|
|
--font-family-mono: theme(fontFamily.mono);
|
|
}
|