mirror of
https://github.com/farcasclaudiu/kanban2.git
synced 2026-06-22 07:01:37 +03:00
17 lines
475 B
CSS
17 lines
475 B
CSS
/* Global styles — mobile-first base */
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
background-color: #f4f5f7;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
/* Prevent horizontal overflow from any element */
|
|
overflow-x: hidden;
|
|
/* Use border-box globally so padding never causes overflow */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Ensure all children inherit border-box */
|
|
*, *::before, *::after {
|
|
box-sizing: inherit;
|
|
}
|