diff options
Diffstat (limited to 'packages/memory-graph-playground/src/index.css')
| -rw-r--r-- | packages/memory-graph-playground/src/index.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/memory-graph-playground/src/index.css b/packages/memory-graph-playground/src/index.css new file mode 100644 index 00000000..b2876d8a --- /dev/null +++ b/packages/memory-graph-playground/src/index.css @@ -0,0 +1,31 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +:root { + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: dark; + color: rgba(255, 255, 255, 0.87); + background-color: #0f1419; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +body { + margin: 0; + min-width: 320px; + min-height: 100vh; +} + +#root { + width: 100%; + height: 100vh; +} |