Spaces:
No application file
No application file
File size: 397 Bytes
88f42a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | @tailwind base;
@tailwind components;
@tailwind utilities;
body {
margin: 0;
min-width: 320px;
height: 100dvh;
}
#app {
height: 100%;
}
pre {
line-height: 1;
background-color: rgb(241, 241, 241);
padding: 4px 8px 8px;
border: 1px solid #ccc;
overflow-x: auto;
margin: 0 4px;
border-radius: 2px;
}
ol {
padding: 1em;
list-style: decimal;
}
|