From 2e36bcfe90ecbdd5563357f743fd4e3e9c97212d Mon Sep 17 00:00:00 2001 From: Vladyslav Shevchenko Date: Wed, 16 Jul 2025 01:49:13 +0300 Subject: Small updates to `tailwind` template (#3303) --- examples/basics/README.md | 2 +- examples/markdoc/README.md | 2 +- examples/tailwind/README.md | 7 +++++-- 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 -- cgit