globals.css•602 B
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
}
body {
background-color: #fafafa;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
.ant-layout {
min-height: 100vh;
}
.task-item {
border-radius: 8px;
transition: all 0.2s ease;
}
.task-item:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}