Skip to content

Commit b61c664

Browse files
committed
Disable tailwind preflight
1 parent 4fa37fc commit b61c664

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/content-script/ChatGPTQuery.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function ChatGPTQuery(props: Props) {
9090
return (
9191
<p className="gpt-inner">
9292
Please login and pass Cloudflare check at{' '}
93-
<a href="https://chat.openai.com" target="_blank" rel="noreferrer" className="underline">
93+
<a href="https://chat.openai.com" target="_blank" rel="noreferrer">
9494
chat.openai.com
9595
</a>
9696
{isBraveBrowser() && retry > 0 && (

tailwind.config.cjs

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3+
corePlugins: {
4+
preflight: false,
5+
},
36
content: ['./src/**/*.tsx'],
47
theme: {
58
extend: {},

0 commit comments

Comments
 (0)