feat: create globals.css for Next.js app

This commit is contained in:
2025-06-04 10:40:58 +09:00
parent 63fe79fd7d
commit c52c9d9656

View File

@ -0,0 +1,23 @@
/* Global styles for the Next.js app */
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans',
sans-serif;
background-color: #f9fafb; /* light background */
color: #111827; /* dark text */
}
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Center content by default */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}