1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-09 04:25:18 +02:00
flame/client/src/index.css

16 lines
308 B
CSS
Raw Normal View History

2021-05-07 18:30:06 +02:00
* {
2021-05-06 19:03:31 +02:00
margin: 0;
2021-05-07 18:30:06 +02:00
padding: 0;
box-sizing: border-box;
2021-05-06 19:03:31 +02:00
}
2021-05-07 18:30:06 +02:00
body {
--color-background: #2B2C56;
--color-primary: #EFF1FC;
--color-accent: #6677EB;
--space-p-x: 16px;
background-color: var(--color-background);
font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Roboto, sans-serif;
}