Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update styles #54

Merged
merged 2 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/mode-watcher/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ pnpm-lock.yaml
package-lock.json
yarn.lock
.changeset/**/*
/dist
1 change: 1 addition & 0 deletions packages/mode-watcher/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ package-lock.json
yarn.lock

.changeset/**/*
/dist
1 change: 1 addition & 0 deletions sites/docs/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ node_modules
pnpm-lock.yaml
package-lock.json
yarn.lock
/dist
3 changes: 3 additions & 0 deletions sites/docs/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
pnpm-lock.yaml
package-lock.json
yarn.lock
/dist
/.svelte-kit
/node_modules
26 changes: 5 additions & 21 deletions sites/docs/src/lib/styles/app.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
}

.dark {
--background: 0 0% 9%;
--foreground: 0 0% 100%;
--background: 0 0% 5%;
--foreground: 0 0% 98%;

--muted: 240 4% 16%;
--muted-foreground: 320 5.9% 64.9%;
Expand Down Expand Up @@ -155,26 +155,10 @@
);
filter: blur(180px);
height: 30vh;
opacity: 0.5;
opacity: 1;
position: fixed;
top: 15vh;
left: 40vw;
width: 100%;
z-index: -1;
}

.features-gradient {
background: radial-gradient(
circle 50vh at 50% 25%,
theme(colors.brand),
theme(colors.background) 60%
);
filter: blur(180px);
height: 30vh;
opacity: 0.5;
position: fixed;
bottom: 20vh;
right: 30vw;
top: -5vh;
left: 0vw;
width: 100%;
z-index: -1;
}
Expand Down
1 change: 0 additions & 1 deletion sites/docs/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
</script>

<span class="hero-gradient"></span>
<span class="features-gradient"></span>
<div class="container relative mx-auto max-w-5xl py-20 sm:py-28 md:py-32">
<h1
class="text-balance text-center text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl"
Expand Down
Loading