mirror of
https://github.com/supabase/supabase.git
synced 2026-06-22 07:22:07 +08:00
32 lines
606 B
CSS
32 lines
606 B
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));
|
|
}
|
|
|
|
.graphiqlAddTabWrapper {
|
|
padding: var(--px-12);
|
|
}
|
|
|
|
/* Colors */
|
|
: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%;
|
|
}
|