-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(docs): Made UI improvements refactor(docs): Added nuxt-phosphor-icons as workspace dependency
- Loading branch information
1 parent
8fde1cc
commit ecd51ec
Showing
7 changed files
with
167 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,9 @@ | ||
<template> | ||
<main> | ||
<LazyIntroBanner /> | ||
<LazyContentDoc | ||
class="mx-auto min-h-screen w-1/2 space-y-8 py-20" | ||
id="documentation" | ||
/> | ||
</main> | ||
<NuxtPage /> | ||
</template> | ||
|
||
<style lang="scss"> | ||
body { | ||
@apply bg-background-100; | ||
} | ||
#documentation { | ||
h1, | ||
h2, | ||
h3, | ||
h4 { | ||
a { | ||
@apply text-copy-900 font-serif; | ||
} | ||
} | ||
h1 { | ||
@apply text-copy-900 font-serif text-6xl; | ||
} | ||
h2 { | ||
@apply text-4xl; | ||
} | ||
h3 { | ||
@apply text-3xl; | ||
} | ||
h4 { | ||
@apply text-2xl font-bold; | ||
code { | ||
@apply bg-accent-500 rounded-lg p-3; | ||
} | ||
} | ||
ol { | ||
@apply list-inside list-decimal space-y-8 text-lg; | ||
li { | ||
@apply space-y-4; | ||
} | ||
} | ||
ul { | ||
@apply list-inside list-disc space-y-8 text-lg; | ||
li { | ||
@apply space-y-4; | ||
} | ||
} | ||
p { | ||
@apply text-accent-900 text-balance text-lg leading-loose tracking-wide; | ||
} | ||
pre { | ||
@apply bg-accent-900 rounded-lg p-7 text-sm; | ||
code { | ||
@apply rounded-none bg-transparent; | ||
} | ||
} | ||
code { | ||
@apply bg-accent-500 rounded-lg px-3 py-1 text-sm; | ||
} | ||
a { | ||
@apply text-accent-500 hover:underline; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<template> | ||
<main> | ||
<LazyIntroBanner /> | ||
<LazyContentDoc | ||
class="mx-auto min-h-screen w-1/2 space-y-8 py-20" | ||
id="documentation" | ||
/> | ||
</main> | ||
</template> | ||
|
||
<style lang="scss"> | ||
#documentation { | ||
h1, | ||
h2, | ||
h3, | ||
h4 { | ||
a { | ||
@apply font-serif text-copy-900; | ||
} | ||
} | ||
h1 { | ||
@apply font-serif text-6xl text-copy-900; | ||
} | ||
h2 { | ||
@apply text-4xl; | ||
} | ||
h3 { | ||
@apply text-3xl; | ||
} | ||
h4 { | ||
@apply text-2xl font-bold; | ||
code { | ||
@apply rounded-lg bg-accent-500 p-3; | ||
} | ||
} | ||
ol { | ||
@apply list-inside list-decimal space-y-8 text-lg; | ||
li { | ||
@apply space-y-4; | ||
} | ||
} | ||
ul { | ||
@apply list-inside list-disc space-y-8 text-lg; | ||
li { | ||
@apply space-y-4; | ||
} | ||
} | ||
p { | ||
@apply text-balance text-lg leading-loose tracking-wide text-accent-900; | ||
} | ||
pre { | ||
@apply rounded-lg bg-accent-900 p-7 text-sm; | ||
code { | ||
@apply rounded-none bg-transparent; | ||
} | ||
} | ||
code { | ||
@apply rounded-lg bg-accent-500 px-3 py-1 text-sm; | ||
} | ||
a { | ||
@apply text-accent-500 hover:underline; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<template> | ||
<main class="space-y-20 py-20"> | ||
<div class="mx-auto w-3/4"> | ||
<NuxtLink | ||
to="/" | ||
class="flex w-fit items-center gap-x-1 rounded-full border border-secondary-500 p-3 text-secondary-500 transition hover:bg-secondary-500 hover:text-copy-900" | ||
><LazyPhosphorIconArrowLeft size="20" /> Go back</NuxtLink | ||
> | ||
</div> | ||
<LazyContentDoc | ||
class="mx-auto min-h-screen w-1/2 space-y-8" | ||
id="changelog" | ||
/> | ||
</main> | ||
</template> | ||
|
||
<style lang="scss"> | ||
#changelog { | ||
a { | ||
@apply text-accent-500 hover:underline; | ||
} | ||
h1, | ||
h2, | ||
h3, | ||
h4 { | ||
a { | ||
@apply font-serif text-copy-900; | ||
} | ||
} | ||
h1 { | ||
@apply font-serif text-6xl text-copy-900; | ||
} | ||
h2 { | ||
@apply text-4xl; | ||
} | ||
h3 { | ||
@apply text-3xl; | ||
} | ||
p { | ||
@apply text-balance text-lg leading-loose tracking-wide text-accent-900; | ||
} | ||
ul { | ||
@apply list-inside list-disc space-y-4 text-lg; | ||
} | ||
} | ||
</style> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.