From 00fa0067aa33f74a4b1bd44f98541e03aeca22dc Mon Sep 17 00:00:00 2001 From: garrettmills Date: Fri, 26 Nov 2021 23:26:46 -0600 Subject: [PATCH] Modal & theming --- index.html | 197 ++++++++++++++++++++- package.json | 5 +- pnpm-lock.yaml | 314 ++++++++++++++++++++++++++++++++ src/index.ts | 5 +- src/layout/Modal.component.ts | 122 +++++++++++++ src/nav/NavBar.component.ts | 8 +- src/resources/theme.css | 325 ++++++++++++++++++++++++++++++++++ 7 files changed, 967 insertions(+), 9 deletions(-) create mode 100644 src/layout/Modal.component.ts create mode 100644 src/resources/theme.css diff --git a/index.html b/index.html index d914d42..0294b6b 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@ body { margin: 0; padding: 0; - font-family: sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif }