Skip to content

Commit

Permalink
Capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Feb 6, 2025
1 parent 238dca3 commit ccdbb31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function OnboardingDialog() {
>
<div className="flex flex-col gap-2">
<Typography className="mb-4">
Congratulations on creating your new project! We have automatically created an API key for you. Please copy it to your <InlineCode>.env.local</InlineCode> file. Get more information in the <StyledLink target="_blank" href="https://docs.stack-auth.com">getting started guide</StyledLink>.
Congratulations on creating your new project! We have automatically created an API key for you. Please copy it to your <InlineCode>.env.local</InlineCode> file. Get more information in the <StyledLink target="_blank" href="https://docs.stack-auth.com">Getting Started guide</StyledLink>.
</Typography>
<EnvKeys projectId={project.id} publishableClientKey={apiKey?.publishableClientKey} secretServerKey={apiKey?.secretServerKey} />
<Typography type="label">
Expand Down
4 changes: 2 additions & 2 deletions docs/fern/docs/pages/customization/custom-styles.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ And some other variables:

These variables are css variables so you can use the syntax like `hsl(0, 0%, 0%)`, `black`, `#fff`, etc.

The colors can be different for light and dark mode. You can pass these into the `StackTheme` component (in your `layout.tsx` file if you followed the get started guide) as follows:
The colors can be different for light and dark mode. You can pass these into the `StackTheme` component (in your `layout.tsx` file if you followed the Getting Started guide) as follows:

```jsx title="app/layout.tsx"
const theme = {
Expand All @@ -50,4 +50,4 @@ const theme = {
<StackTheme theme={theme}>
{/* children */}
</StackTheme>
```
```

0 comments on commit ccdbb31

Please sign in to comment.