File tree Expand file tree Collapse file tree
frontend/src/components/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 - name : 📥 Checkout repository
1717 uses : actions/checkout@v4
1818
19- - name : 🟦 Set up Node.js
19+ - name : 🟩 Set up Node.js
2020 uses : actions/setup-node@v4
2121 with :
2222 node-version : ' 18'
Original file line number Diff line number Diff line change @@ -6,3 +6,5 @@ node_modules
66.cursor /
77* .log
88/backend /coverage
9+ .vscode
10+ .idea
Original file line number Diff line number Diff line change @@ -264,6 +264,7 @@ const CodePanel: React.FC<CodePanelPropsWithTooltips> = ({
264264 value = { safeCode }
265265 onChange = { handleCodeChange }
266266 className = "w-full h-full min-h-[20rem] bg-gray-900/50 text-gray-100 font-mono text-sm leading-relaxed p-4 rounded-lg border border-gray-600 focus:border-blue-500 focus:outline-none resize-none"
267+ style = { { fontSize : 14 } }
267268 placeholder = { `// Enter your ${ stack } code here...\n// You can edit this code directly and then convert it to another framework` }
268269 spellCheck = { false }
269270 />
@@ -312,6 +313,7 @@ const CodePanel: React.FC<CodePanelPropsWithTooltips> = ({
312313 value = { safeCode }
313314 onChange = { handleCodeChange }
314315 className = "w-full h-full min-h-[20rem] bg-gray-900/50 text-gray-100 font-mono text-sm leading-relaxed p-4 rounded-lg border border-gray-600 focus:border-blue-500 focus:outline-none resize-none"
316+ style = { { fontSize : 13 } }
315317 placeholder = { `// Enter your ${ stack } code here...\n// You can edit this code directly and then convert it to another framework` }
316318 spellCheck = { false }
317319 />
You can’t perform that action at this time.
0 commit comments