feat(create-turbo): apply official-starter transform

This commit is contained in:
Turbobot 2024-08-11 23:39:29 -07:00 committed by DESKTOP-RTLN3BA\$punk
parent 55332d1ddb
commit 856eb69577
201 changed files with 2812 additions and 14413 deletions

39
apps/docs/app/globals.css Normal file
View file

@ -0,0 +1,39 @@
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
}
body {
color: var(--foreground);
background: var(--background);
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
}