We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa37fc commit b61c664Copy full SHA for b61c664
src/content-script/ChatGPTQuery.tsx
@@ -90,7 +90,7 @@ function ChatGPTQuery(props: Props) {
90
return (
91
<p className="gpt-inner">
92
Please login and pass Cloudflare check at{' '}
93
- <a href="https://chat.openai.com" target="_blank" rel="noreferrer" className="underline">
+ <a href="https://chat.openai.com" target="_blank" rel="noreferrer">
94
chat.openai.com
95
</a>
96
{isBraveBrowser() && retry > 0 && (
tailwind.config.cjs
@@ -1,5 +1,8 @@
1
/** @type {import('tailwindcss').Config} */
2
module.exports = {
3
+ corePlugins: {
4
+ preflight: false,
5
+ },
6
content: ['./src/**/*.tsx'],
7
theme: {
8
extend: {},
0 commit comments