mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 21:54:19 +08:00
* Do up logic for callback for opening side panel * Add TextEditor side panel and fix some quirky bugs with JSONEditor too * Add Markdown Preview in TextEditor * Fix bad cs * Fix border css
23 lines
643 B
SCSS
23 lines
643 B
SCSS
.react-contexify {
|
|
@apply border border-default;
|
|
background-color: hsl(var(--background-surface-100)) !important;
|
|
|
|
.react-contexify__item {
|
|
.react-contexify__item__content {
|
|
@apply text-foreground-light text-sm;
|
|
}
|
|
.react-contexify__submenu {
|
|
@apply bg-surface-100 border;
|
|
}
|
|
}
|
|
.react-contexify__item:not(.react-contexify__item--disabled):hover
|
|
> .react-contexify__item__content,
|
|
.react-contexify__item:not(.react-contexify__item--disabled):focus
|
|
> .react-contexify__item__content {
|
|
@apply bg-overlay-hover text-foreground;
|
|
}
|
|
.react-contexify__separator {
|
|
@apply bg-surface-300;
|
|
}
|
|
}
|