tldraw/apps/www/styles/globals.css

27 lines
392 B
CSS
Raw Normal View History

2021-09-04 11:26:46 +00:00
html,
body {
padding: 0;
margin: 0;
2021-09-06 13:37:48 +00:00
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell,
Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2021-09-04 11:26:46 +00:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
2021-09-09 22:22:22 +00:00
.tldraw {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
width: 100%;
height: 100%;
}