feat(ui): add type filter toggles

This commit is contained in:
2026-02-18 23:13:28 -08:00
commit a4cff9894c
14457 changed files with 2204835 additions and 0 deletions

68
src/index.css Normal file
View File

@@ -0,0 +1,68 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--bg-primary: #0F172A;
--bg-secondary: #1E293B;
--bg-tertiary: #334155;
--text-primary: #F8FAFC;
--text-secondary: #94A3B8;
--border: #475569;
--accent: #38BDF8;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Inter', system-ui, sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
overflow: hidden;
}
#root {
width: 100vw;
height: 100vh;
}
.react-flow__node {
cursor: pointer;
}
.react-flow__edge-path {
stroke-width: 2;
}
.react-flow__minimap {
background-color: var(--bg-secondary);
}
/* Controls styling */
.react-flow__controls {
background: transparent;
box-shadow: none;
}
.react-flow__controls-button {
background-color: #334155;
border: 1px solid #475569;
color: #94A3B8;
border-bottom: 1px solid #475569;
}
.react-flow__controls-button:hover {
background-color: #475569;
color: #F8FAFC;
}
.react-flow__controls-button:active {
background-color: #1E293B;
}
.react-flow__controls-button svg {
fill: currentColor;
}