index.css 참고 코드 삭제 (실 동작에는 무관함)

This commit is contained in:
backuppc
2026-01-19 11:17:33 +09:00
parent 31f18448ce
commit 1e20601741

View File

@@ -1,27 +1,34 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="UTF-8" /> <head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta charset="UTF-8" />
<title>WebZilla - Cloud FTP Client</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script> <title>WebZilla - Cloud FTP Client</title>
<style> <script src="https://cdn.tailwindcss.com"></script>
/* Custom scrollbar for a more native app feel - Light Theme */ <style>
::-webkit-scrollbar { /* Custom scrollbar for a more native app feel - Light Theme */
width: 8px; ::-webkit-scrollbar {
height: 8px; width: 8px;
} height: 8px;
::-webkit-scrollbar-track { }
background: #f1f5f9; /* slate-100 */
} ::-webkit-scrollbar-track {
::-webkit-scrollbar-thumb { background: #f1f5f9;
background: #cbd5e1; /* slate-300 */ /* slate-100 */
border-radius: 4px; }
}
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb {
background: #94a3b8; /* slate-400 */ background: #cbd5e1;
} /* slate-300 */
</style> border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
/* slate-400 */
}
</style>
<script type="importmap"> <script type="importmap">
{ {
"imports": { "imports": {
@@ -33,10 +40,12 @@
} }
} }
</script> </script>
<link rel="stylesheet" href="/index.css">
</head> </head>
<body class="bg-slate-50 text-slate-800 overflow-hidden h-screen w-screen selection:bg-blue-200 selection:text-blue-900">
<div id="root"></div> <body
class="bg-slate-50 text-slate-800 overflow-hidden h-screen w-screen selection:bg-blue-200 selection:text-blue-900">
<div id="root"></div>
<script type="module" src="/index.tsx"></script> <script type="module" src="/index.tsx"></script>
</body> </body>
</html> </html>