Spaces:
Sleeping
Sleeping
File size: 485 Bytes
89b8989 b54d48b 89b8989 b54d48b 89b8989 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
@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;
}
|