File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -130,13 +130,25 @@ let steps = [
130
130
} ,
131
131
{
132
132
title : 'Start using Tailwind in your project' ,
133
- body : ( ) => < p > Start using Tailwind’s utility classes to style your content.</ p > ,
133
+ body : ( ) => (
134
+ < p >
135
+ Start using Tailwind’s utility classes to style your content, making sure to set{ ' ' }
136
+ < code > lang="postcss"</ code > for any < code > <style></ code > blocks that need to be
137
+ processed by Tailwind.
138
+ </ p >
139
+ ) ,
134
140
code : {
135
141
name : '+page.svelte' ,
136
142
lang : 'html' ,
137
- code : `<h1 class="text-3xl font-bold underline">
138
- Hello world!
139
- </h1>` ,
143
+ code : `> <h1 class="text-3xl font-bold underline">
144
+ Hello world!
145
+ </h1>
146
+
147
+ > <style lang="postcss">
148
+ :global(html) {
149
+ background-color: theme(colors.gray.100);
150
+ }
151
+ </style>` ,
140
152
} ,
141
153
} ,
142
154
]
You can’t perform that action at this time.
0 commit comments