Skip to content

Commit da3bea0

Browse files
Merge branch 'main' into fix-typo-service-workers
2 parents c851bcd + 67ebc90 commit da3bea0

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
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
/>

src/routes/solid-router/reference/components/a.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: A
33
---
44

5-
Solid Router exposes the `<A />` component as a wrapper around the [native anchor tag ](https://mdn.io/a).
5+
Solid Router exposes the `<A />` component as a wrapper around the [native anchor tag ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a).
66
It relies on the routing context provided by the [`<Router>` component](/solid-router/reference/components/router) and if used outside, will triggers a runtime error..
77

88
`<A />` supports relative and base paths. `<a />` doesn't. But `<a />` gets augmented

src/routes/solid-start/guides/security.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Security
33
---
44

5-
As a non-opinionated framework, SolidStart doesn't enforce any security practices, though it enables enables developers to implement them as needed.
5+
As a non-opinionated framework, SolidStart doesn't enforce any security practices, though it enables developers to implement them as needed.
66
It is important to know what are the requirements for your own app and implement the fitting security measures.
77
If at any point you are unsure about the security of your app, or how to achieve something within the constraints of SolidStart reach us on [Discord](https://discord.gg/solidjs).
88

@@ -33,4 +33,4 @@ The exception is when HTML is inserted via the `innerHTML` property, which bypas
3333
Additionally, it's important to note that `<noscript>` are also outside of the purview of SolidStart, since those tags and its contents are evaluated even without JavaScript.
3434
It is important to sanitize any strings in attributes, especially when inside `<noscript>` tags.
3535

36-
As a rule-of-thumb it is recommended to avoid injecting HTML into your page as much as possible, make sure the contents of `<noscript>` are properly sanitized, and add a strict Content Security Policy to your application.
36+
As a rule-of-thumb it is recommended to avoid injecting HTML into your page as much as possible, make sure the contents of `<noscript>` are properly sanitized, and add a strict Content Security Policy to your application.

0 commit comments

Comments
 (0)