mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
562 B
38 lines
562 B
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: 'Inter', sans-serif;
|
|
overscroll-behavior: none;
|
|
touch-action: none;
|
|
overflow: hidden;
|
|
min-height: 100vh;
|
|
/* mobile viewport bug fix */
|
|
min-height: -webkit-fill-available;
|
|
height: 100%;
|
|
}
|
|
|
|
.tlui-help-menu {
|
|
display: none !important;
|
|
}
|
|
|
|
.tlui-debug-panel {
|
|
display: none !important;
|
|
}
|
|
|
|
.tldraw__editor {
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|