From d1084a0eeffb0d88e2ef46b3c43c313e3db062f7 Mon Sep 17 00:00:00 2001 From: Alex Gorichev Date: Sat, 13 Apr 2024 22:28:08 +0100 Subject: [PATCH] Make text match code in css-and-styling.mdx (#679) Co-authored-by: Sarah --- .../building-your-application/css-and-styling.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/routes/solid-start/building-your-application/css-and-styling.mdx b/src/routes/solid-start/building-your-application/css-and-styling.mdx index 7f4f1ad20..38676c01c 100644 --- a/src/routes/solid-start/building-your-application/css-and-styling.mdx +++ b/src/routes/solid-start/building-your-application/css-and-styling.mdx @@ -17,7 +17,7 @@ src/ │ ├── Card.css ``` -To use the CSS in the component, you can define the CSS in the `Button.css` file and import it in the `Button.tsx` file: +To use the CSS in the component, you can define the CSS in the `Card.css` file and import it in the `Card.tsx` file: ```css title="Card.css" .card { @@ -95,4 +95,5 @@ const Card = (props) => { ## Other ways to style components -Because SolidStart is built on top of Solid, styling is not limited to CSS. To see other ways to style components, see the [styling section in the Solid documentation](/guides/styling-your-components). \ No newline at end of file +SolidStart is built on top of Solid, meaning styling is not limited to CSS. +To see other ways to style components, see the [styling section in the Solid documentation](/guides/styling-your-components).