diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 10:32:25 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 10:32:25 +0200 |
| commit | 891330d98d75b8621bda2dd7528e099af287060c (patch) | |
| tree | d3c5e62aa0764f8b09e050e414c4200ffd5ea51e /src/styles/global.css | |
| parent | c89f55bc7949e2741d29f76392ab3af8d49886ca (diff) | |
Migrate to tailwind styles
Diffstat (limited to 'src/styles/global.css')
| -rw-r--r-- | src/styles/global.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/styles/global.css b/src/styles/global.css index a461c50..c81f9a9 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1 +1,16 @@ -@import "tailwindcss";
\ No newline at end of file +@import "tailwindcss"; + +body { + margin: 0; + padding: 0; + position: fixed; + overflow: hidden; + width: 100vw; + height: 100vh; + user-select: none; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +}
\ No newline at end of file |
