Skip to content

Commit be1108d

Browse files
committed
fix
1 parent 0c076dc commit be1108d

1 file changed

Lines changed: 10 additions & 11 deletions

File tree

init/src/init.ts

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -215,17 +215,16 @@ export default {
215215
await writeFile("tailwind.config.ts", TAILWIND_CONFIG_TS);
216216
}
217217

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-
`;
218+
// deno-fmt-ignore
219+
const GRADIENT_CSS = css`.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+
}`;
229228

230229
const NO_TAILWIND_STYLES = css`*,
231230
*::before,

0 commit comments

Comments
 (0)