19 lines
374 B
CSS
19 lines
374 B
CSS
/*
|
|
This file contains global base styles and resets
|
|
--> ensures consistent spacing, font usage, and box sizing
|
|
across all elements in the application
|
|
*/
|
|
|
|
/* Reset default browser styles */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: system-ui, sans-serif;
|
|
}
|
|
|
|
/* Global body styling */
|
|
body {
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
} |