Files
car/frontend/src/index.css

28 lines
371 B
CSS

/* Global styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
background: #f5f7fa;
color: #333;
min-height: 100vh;
}
#root {
min-height: 100vh;
display: flex;
flex-direction: column;
}
button {
cursor: pointer;
}
input, textarea, select {
font-family: inherit;
}