Skip to content

Commit de26094

Browse files
hyperpolymathclaude
andcommitted
fix: replace Tailwind CDN with locally compiled stylesheet
The CDN script tag required network access at runtime and was unpinned. The local build pipeline (tailwind.config.js + input.css → styles.css) was already set up but unused. Now index.html links the compiled output. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dfe4e23 commit de26094

1 file changed

Lines changed: 3 additions & 29 deletions

File tree

public/index.html

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5,42 +5,16 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>PanLL - eNSAID (Environment for NeSy-Agentic Integrated Development)</title>
77

8-
<!-- Tailwind CSS CDN for styling -->
9-
<script src="https://cdn.tailwindcss.com"></script>
8+
<!-- Compiled Tailwind CSS (built from src/styles/input.css via tailwind.config.js) -->
9+
<link rel="stylesheet" href="styles.css">
1010

1111
<style>
12-
body {
13-
margin: 0;
14-
padding: 0;
15-
font-family: system-ui, -apple-system, sans-serif;
16-
background: #111827; /* gray-900 */
17-
color: #f9fafb; /* gray-50 */
18-
}
19-
12+
/* App mount container — not part of Tailwind, needed before stylesheet loads */
2013
#app {
2114
width: 100vw;
2215
height: 100vh;
2316
overflow: hidden;
2417
}
25-
26-
/* Custom scrollbar for dark theme */
27-
::-webkit-scrollbar {
28-
width: 8px;
29-
height: 8px;
30-
}
31-
32-
::-webkit-scrollbar-track {
33-
background: #1f2937; /* gray-800 */
34-
}
35-
36-
::-webkit-scrollbar-thumb {
37-
background: #4b5563; /* gray-600 */
38-
border-radius: 4px;
39-
}
40-
41-
::-webkit-scrollbar-thumb:hover {
42-
background: #6b7280; /* gray-500 */
43-
}
4418
</style>
4519
</head>
4620
<body>

0 commit comments

Comments
 (0)