mirror of
https://github.com/chartdb/chartdb.git
synced 2026-01-13 23:41:33 -06:00
* change code block to be more friendly * change code block to be more friendly * tooltip copy & remove contextmenu * fix templates
23 lines
449 B
CSS
23 lines
449 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.react-flow.canvas-cursor-default .react-flow__pane {
|
|
@apply cursor-default;
|
|
}
|
|
|
|
.react-flow.nodes-animated .react-flow__node {
|
|
@apply transition-[width];
|
|
@apply duration-100;
|
|
}
|
|
|
|
.monaco-editor .monaco-editor-overlaymessage {
|
|
@apply hidden !important;
|
|
}
|
|
|
|
.scrollable-flex > div {
|
|
@apply !flex;
|
|
}
|
|
}
|