yuting111222's picture
feat: 完成前端互動與後端修正
b54d48b
raw
history blame contribute delete
485 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
/* 全局 reset 與字型 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
justify-content: center;
align-items: center;
padding: 1rem;
}
#root {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}