diff --git a/surfsense_browser_extension/sidepanel/chat/ChatInterface.tsx b/surfsense_browser_extension/sidepanel/chat/ChatInterface.tsx
index 4c661fd08..6f8615983 100644
--- a/surfsense_browser_extension/sidepanel/chat/ChatInterface.tsx
+++ b/surfsense_browser_extension/sidepanel/chat/ChatInterface.tsx
@@ -511,24 +511,27 @@ What would you like to know?`;
)}
- {/* Chat input (only in chat mode) */}
+ {/* Chat input and quick capture (only in chat mode) */}
{viewMode === "chat" && (
-
+
+
+
+
)}
{/* Back to chat button for other views */}
{viewMode !== "chat" && (
-
+
)}
- {/* Quick capture button */}
-
-
{/* Alert configuration modal */}
-
- {/* Quick actions - now with 4 buttons */}
-
+ {/* Quick actions - 4 buttons in grid, responsive */}
+
handleQuickAction("safety")}
>
-
- Safety
+
+ Safety
handleQuickAction("holders")}
>
-
- Holders
+
+ Holders
handleQuickAction("predict")}
>
-
- Predict
+
+ Predict
handleQuickAction("rug")}
>
-
- Rug
+
+ Rug
diff --git a/surfsense_browser_extension/sidepanel/widgets/TokenAnalysisWidget.tsx b/surfsense_browser_extension/sidepanel/widgets/TokenAnalysisWidget.tsx
index 6e06a0311..26d4aea6c 100644
--- a/surfsense_browser_extension/sidepanel/widgets/TokenAnalysisWidget.tsx
+++ b/surfsense_browser_extension/sidepanel/widgets/TokenAnalysisWidget.tsx
@@ -178,15 +178,15 @@ export function TokenAnalysisWidget({
)}
{/* Action buttons */}
-
-
-
- {isInWatchlist ? "In Watchlist" : "Add to Watchlist"}
+
+
+
+ {isInWatchlist ? "In Watchlist" : "Add to Watchlist"}
-
+
-
+
Analyze More
diff --git a/surfsense_browser_extension/tailwind.config.js b/surfsense_browser_extension/tailwind.config.js
index 94ec92383..d1c954054 100644
--- a/surfsense_browser_extension/tailwind.config.js
+++ b/surfsense_browser_extension/tailwind.config.js
@@ -3,7 +3,13 @@ const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
- content: ["./*.{js,jsx,ts,tsx}", "./routes/*.tsx", "./routes/**/*.tsx"],
+ content: [
+ "./*.{js,jsx,ts,tsx}",
+ "./routes/**/*.{js,jsx,ts,tsx}",
+ "./sidepanel/**/*.{js,jsx,ts,tsx}",
+ "./lib/**/*.{js,jsx,ts,tsx}",
+ "./background/**/*.{js,jsx,ts,tsx}",
+ ],
theme: {
container: {
center: true,