diff options
author | Vladyslav Shevchenko | 2025-07-16 01:49:13 +0300 |
---|---|---|
committer | GitHub | 2025-07-16 00:49:13 +0200 |
commit | 2e36bcfe90ecbdd5563357f743fd4e3e9c97212d (patch) | |
tree | c25479c8026c2f3dfa5ee217991f5681cad41278 | |
parent | 13aea48340913767804dbed3f6ac6455e330339a (diff) | |
download | IT.starlight-2e36bcfe90ecbdd5563357f743fd4e3e9c97212d.tar.gz IT.starlight-2e36bcfe90ecbdd5563357f743fd4e3e9c97212d.tar.bz2 IT.starlight-2e36bcfe90ecbdd5563357f743fd4e3e9c97212d.zip |
Small updates to `tailwind` template (#3303)
-rw-r--r-- | examples/basics/README.md | 2 | ||||
-rw-r--r-- | examples/markdoc/README.md | 2 | ||||
-rw-r--r-- | examples/tailwind/README.md | 7 | ||||
-rw-r--r-- | examples/tailwind/src/content/docs/reference/example.md | 2 |
4 files changed, 8 insertions, 5 deletions
diff --git a/examples/basics/README.md b/examples/basics/README.md index f9f6d31c..fcd63ad7 100644 --- a/examples/basics/README.md +++ b/examples/basics/README.md @@ -23,7 +23,7 @@ Inside of your Astro + Starlight project, you'll see the following folders and f ├── src/ │ ├── assets/ │ ├── content/ -│ │ ├── docs/ +│ │ └── docs/ │ └── content.config.ts ├── astro.config.mjs ├── package.json diff --git a/examples/markdoc/README.md b/examples/markdoc/README.md index 9dc25ffe..c39022fd 100644 --- a/examples/markdoc/README.md +++ b/examples/markdoc/README.md @@ -23,7 +23,7 @@ Inside of your Astro + Starlight project, you'll see the following folders and f ├── src/ │ ├── assets/ │ ├── content/ -│ │ ├── docs/ +│ │ └── docs/ │ └── content.config.ts ├── astro.config.mjs ├── markdoc.config.mjs diff --git a/examples/tailwind/README.md b/examples/tailwind/README.md index bc54e6da..c6df9c3f 100644 --- a/examples/tailwind/README.md +++ b/examples/tailwind/README.md @@ -23,11 +23,12 @@ Inside of your Astro + Starlight project, you'll see the following folders and f ├── src/ │ ├── assets/ │ ├── content/ -│ │ ├── docs/ +│ │ └── docs/ +│ ├── styles/ +│ │ └── global.css │ └── content.config.ts ├── astro.config.mjs ├── package.json -├── tailwind.config.mjs └── tsconfig.json ``` @@ -37,6 +38,8 @@ Images can be added to `src/assets/` and embedded in Markdown with a relative li Static assets, like favicons, can be placed in the `public/` directory. +The project includes [Tailwind CSS](https://starlight.astro.build/guides/css-and-tailwind/#tailwind-css) for styling. Customize your design by modifying `src/styles/global.css`. + ## 🧞 Commands All commands are run from the root of the project, from a terminal: diff --git a/examples/tailwind/src/content/docs/reference/example.md b/examples/tailwind/src/content/docs/reference/example.md index ac8cfa8b..0224f096 100644 --- a/examples/tailwind/src/content/docs/reference/example.md +++ b/examples/tailwind/src/content/docs/reference/example.md @@ -4,7 +4,7 @@ description: A reference page in my new Starlight docs site. --- Reference pages are ideal for outlining how things work in terse and clear terms. -Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what your documenting. +Less concerned with telling a story or addressing a specific use case, they should give a comprehensive outline of what you're documenting. ## Further reading |