Fix theme.css location in docs starter project (#4697)

* Fix theme.css location in docs starter project

* Also fix in diff display

Co-authored-by: Brendan O'Leary <boleary@gitlab.com>
This commit is contained in:
Brendan O'Leary 2022-09-09 13:19:45 -04:00 committed by GitHub
parent eb4f6faee6
commit 80ae62ad99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,14 +47,14 @@ Welcome! Check out [our documentation](https://docs.astro.build) or jump into ou
### CSS styling ### CSS styling
The theme's look and feel is controlled by a few key variables that you can customize yourself. You'll find them in the `public/theme.css` CSS file. The theme's look and feel is controlled by a few key variables that you can customize yourself. You'll find them in the `src/styles/theme.css` CSS file.
If you've never worked with CSS variables before, give [MDN's guide on CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) a quick read. If you've never worked with CSS variables before, give [MDN's guide on CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) a quick read.
This theme uses a "cool blue" accent color by default. To customize this for your project, change the `--theme-accent` variable to whatever color you'd like: This theme uses a "cool blue" accent color by default. To customize this for your project, change the `--theme-accent` variable to whatever color you'd like:
```diff ```diff
/* public/theme.css */ /* src/styles/theme.css */
:root { :root {
color-scheme: light; color-scheme: light;
- --theme-accent: hsla(var(--color-blue), 1); - --theme-accent: hsla(var(--color-blue), 1);