| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- :root {
- font-family: sans-serif;
- line-height: 1.5;
- font-weight: 400;
- }
- html, body {
- margin: 0;
- padding: 0;
- height: 100%;
- }
- #app {
- margin: 0;
- padding: 0;
- height: 100%;
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- }
- /*@layer components {*/
- /* .main {*/
- /* @apply flex grow items-center justify-center h-screen text-center;*/
- /* height: auto;*/
- /* }*/
- /* .dropzone-container {*/
- /* @apply p-16 bg-[#f7fafc] border border-solid border-[#e2e8f0];*/
- /* }*/
- /* .hidden-input {*/
- /* @apply opacity-0 overflow-hidden absolute w-1 h-2;*/
- /* }*/
- /* .file-label {*/
- /* @apply text-xl block cursor-pointer;*/
- /* font-size: 10pt;*/
- /* }*/
- /* .preview-container {*/
- /* @apply flex mt-8;*/
- /* }*/
- /* .preview-card {*/
- /* @apply flex border border-solid border-[#a2a2a2] p-2 ml-2;*/
- /* }*/
- /* .preview-img {*/
- /* @apply w-14 h-14 rounded-md border border-solid border-[#a2a2a2] bg-[#a2a2a2];*/
- /* }*/
- /*}*/
|