Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
err53 committed Oct 4, 2023
1 parent 7b6beed commit fc6c3cb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ import react from "@astrojs/react";

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), partytown({
config: {
forward: ["dataLayer.push"]
}
}), critters(), react()]
});
integrations: [
tailwind(),
partytown({
config: {
forward: ["dataLayer.push"],
},
}),
critters(),
react(),
],
});
2 changes: 1 addition & 1 deletion src/components/Question.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Question({ question, answer }) {
focus-visible:ring-opacity-75"
>
<span>{question}</span>
<ChevronUpIcon className="ui-open:rotate-180 ui-open:transform w-6 transition-all" />
<ChevronUpIcon className="w-6 transition-all ui-open:rotate-180 ui-open:transform" />
</Disclosure.Button>
<Transition
className="overflow-hidden transition-all duration-500"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}
}

0 comments on commit fc6c3cb

Please sign in to comment.