31 lines
505 B
CSS
31 lines
505 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: "Inter", sans-serif;
|
|
overscroll-behavior: none;
|
|
touch-action: none;
|
|
min-height: 100vh;
|
|
font-size: 16px;
|
|
/* mobile viewport bug fix */
|
|
min-height: -webkit-fill-available;
|
|
height: 100%;
|
|
}
|
|
|
|
html,
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.tldraw__editor {
|
|
position: fixed;
|
|
inset: 0px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.showHover:hover {
|
|
background-color: #ededed !important;
|
|
}
|