Refactor BSC Score to Astro, TypeScript, and modular architecture

This commit is contained in:
Cursor Agent
2025-06-24 11:44:19 +00:00
parent bcf793b9e3
commit 6f626c9977
30 changed files with 1836 additions and 497 deletions

View File

@@ -0,0 +1,24 @@
.layout {
min-height: 100vh;
background-color: #1a1a1a;
color: white;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 16px;
}
.screen {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
}
@media (max-width: 768px) {
.content {
padding: 12px;
}
}