We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c076dc commit be1108dCopy full SHA for be1108d
1 file changed
init/src/init.ts
@@ -215,17 +215,16 @@ export default {
215
await writeFile("tailwind.config.ts", TAILWIND_CONFIG_TS);
216
}
217
218
- const GRADIENT_CSS = css`
219
- .fresh-gradient {
220
- background-color: rgb(134, 239, 172);
221
- background-image: linear-gradient(
222
- to right bottom,
223
- rgb(219, 234, 254),
224
- rgb(187, 247, 208),
225
- rgb(254, 249, 195)
226
- );
227
- }
228
- `;
+ // deno-fmt-ignore
+ const GRADIENT_CSS = css`.fresh-gradient {
+ background-color: rgb(134, 239, 172);
+ background-image: linear-gradient(
+ to right bottom,
+ rgb(219, 234, 254),
+ rgb(187, 247, 208),
+ rgb(254, 249, 195)
+ );
+}`;
229
230
const NO_TAILWIND_STYLES = css`*,
231
*::before,
0 commit comments