Skip to content

Commit 67ebc90

Browse files
Fix Tailwind CSS spelling (#1095)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent e697be3 commit 67ebc90

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/routes/concepts/components/class-style.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ For a single conditional class, using `class` might be simpler but as the number
107107
Additionally, since `classList` is a pseudo-attribute, it doesn't work in prop spreads like `<div {...props} />` or in `<Dynamic>`.
108108
</Callout>
109109

110-
For a guide on how to style your components, see [Styling Your Components](/guides/styling-your-components), where we cover the different ways to style your components using libraries such as [TailwindCSS](https://tailwindcss.com/).
110+
For a guide on how to style your components, see [Styling Your Components](/guides/styling-your-components), where we cover the different ways to style your components using libraries such as [Tailwind CSS](https://tailwindcss.com/).

src/routes/guides/styling-components/tailwind-v3.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: TailwindCSS v3
2+
title: Tailwind CSS v3
33
order: 7
44
mainNavExclude: true
55
---
@@ -64,7 +64,7 @@ bunx tailwindcss init -p
6464
</div>
6565
</TabsCodeBlocks>
6666

67-
3. Since TailwindCSS is configuration-driven, after initializing, a `tailwind.config.js` file will be created at the root of your project directory:
67+
3. Since Tailwind CSS is configuration-driven, after initializing, a `tailwind.config.js` file will be created at the root of your project directory:
6868

6969
```js
7070
/** @type {import('tailwindcss').Config} */
@@ -91,7 +91,7 @@ In your `src/index.css` file, add the following Tailwind directives:
9191

9292
These directives inform PostCSS that you're using Tailwind and establish the order of the directives. You can append custom CSS below these directives.
9393

94-
## Import TailwindCSS
94+
## Import Tailwind CSS
9595

9696
Import your `index.css` file into the root `index.jsx` or `index.tsx` file:
9797

src/routes/guides/styling-components/tailwind.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: TailwindCSS
2+
title: Tailwind CSS
33
order: 5
44
mainNavExclude: true
55
---
66

77
<Callout type="info" title="Note">
88

9-
This guide is for TailwindCSS v4. For **Tailwind CSS v3** refer to [TailwindCSS v3](/guides/styling-components/tailwind-v3).
9+
This guide is for Tailwind CSS v4. For **Tailwind CSS v3** refer to [Tailwind CSS v3](/guides/styling-components/tailwind-v3).
1010

1111
</Callout>
1212

@@ -59,7 +59,7 @@ export default {
5959

6060
For a deeper dive into configuration, you can check out the [Tailwind Official Documentation](https://tailwindcss.com/docs/configuration).
6161

62-
## Import TailwindCSS
62+
## Import Tailwind CSS
6363

6464
Add an `@import` to your `src/index.css` file that imports Tailwind CSS.
6565

src/routes/guides/styling-your-components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ CSS frameworks provide pre-styled components and utility classes to speed up dev
5454
<div class="flex flex-col md:grid md:grid-cols-2 md:grid-rows-1 gap-3">
5555

5656
<ImageLinks
57-
title="TailwindCSS"
57+
title="Tailwind CSS"
5858
href="/guides/styling-components/tailwind"
5959
logo="tailwind"
6060
/>

0 commit comments

Comments
 (0)