mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 00:02:19 +00:00
23 lines
497 B
CSS
23 lines
497 B
CSS
/* Write your global styles here, in PostCSS syntax */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('/Inter-Variable.ttf');
|
|
font-weight: 100 900;
|
|
font-display: swap;
|
|
}
|
|
.splitpanes--vertical > .splitpanes__pane {
|
|
transition: none !important;
|
|
}
|
|
.splitpanes--horizontal > .splitpanes__pane {
|
|
transition: none !important;
|
|
}
|
|
.monaco-workbench > .notifications-toasts.visible {
|
|
display: none !important;
|
|
}
|
|
}
|