Sign in
concept-collection
/
mesh-converter
Code
Commits
Issues
0
Pull requests
0
Actions
Branches
1
Tags
0
Site
main
Branches
main
mesh-converter
/
src
/
index.css
18 lines · 247 B
Copy
Copied
Blame
History
Raw
1
* {
2
box-sizing
: border-box;
3
}
4
5
html
,
6
body
,
7
#root
{
8
margin
:
0
;
9
height
:
100%
;
10
}
11
12
body
{
13
font-family
: system-ui, -apple-system,
'Segoe UI'
, Roboto, sans-serif;
14
font-size
:
14px
;
15
line-height
:
1.5
;
16
color
:
#d6d9de
;
17
background
:
#16181d
;
18
}