Skip to content

Commit

Permalink
Wrap CSS variable in var (#44153)
Browse files Browse the repository at this point in the history
Adds missing CSS var() wrapper + spelling error, caught in [Discussion
#9094](https://github.com/vercel/vercel/discussions/9094).

Closes: #44126
Closes: #44127 

## Bug

- [x] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see
[`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md)

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the
feature request has been accepted for implementation before opening a
PR.
- [ ] Related issues linked using `fixes #number`
- [ ]
[e2e](https://github.com/vercel/next.js/blob/canary/contributing/core/testing.md#writing-tests-for-nextjs)
tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see
[`contributing.md`](https://github.com/vercel/next.js/blob/canary/contributing.md)

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm build && pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
  • Loading branch information
iteratetograceness committed Dec 19, 2022
1 parent 68d06fe commit 43c9d89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app/js/app/globals.css
Expand Up @@ -86,7 +86,7 @@ body {
}

body {
color: rbg(--foreground-rgb);
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-next-app/templates/app/ts/app/globals.css
Expand Up @@ -86,7 +86,7 @@ body {
}

body {
color: rbg(--foreground-rgb);
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
Expand Down
Expand Up @@ -86,7 +86,7 @@ body {
}

body {
color: rbg(--foreground-rgb);
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
Expand Down
Expand Up @@ -86,7 +86,7 @@ body {
}

body {
color: rbg(--foreground-rgb);
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
Expand Down

0 comments on commit 43c9d89

Please sign in to comment.