30 lines
541 B
CSS
30 lines
541 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
margin: 0;
|
|
color: #111827;
|
|
background:
|
|
radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 30%),
|
|
radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 24%),
|
|
linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.react-flow__attribution {
|
|
display: none;
|
|
}
|
|
|
|
.react-flow__node:focus,
|
|
.react-flow__node:focus-visible {
|
|
outline: none;
|
|
} |