style.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. :root {
  2. font-family: sans-serif;
  3. line-height: 1.5;
  4. font-weight: 400;
  5. }
  6. html, body {
  7. margin: 0;
  8. padding: 0;
  9. height: 100%;
  10. }
  11. #app {
  12. margin: 0;
  13. padding: 0;
  14. height: 100%;
  15. display: flex;
  16. flex-direction: column;
  17. min-height: 100vh;
  18. }
  19. /*@layer components {*/
  20. /* .main {*/
  21. /* @apply flex grow items-center justify-center h-screen text-center;*/
  22. /* height: auto;*/
  23. /* }*/
  24. /* .dropzone-container {*/
  25. /* @apply p-16 bg-[#f7fafc] border border-solid border-[#e2e8f0];*/
  26. /* }*/
  27. /* .hidden-input {*/
  28. /* @apply opacity-0 overflow-hidden absolute w-1 h-2;*/
  29. /* }*/
  30. /* .file-label {*/
  31. /* @apply text-xl block cursor-pointer;*/
  32. /* font-size: 10pt;*/
  33. /* }*/
  34. /* .preview-container {*/
  35. /* @apply flex mt-8;*/
  36. /* }*/
  37. /* .preview-card {*/
  38. /* @apply flex border border-solid border-[#a2a2a2] p-2 ml-2;*/
  39. /* }*/
  40. /* .preview-img {*/
  41. /* @apply w-14 h-14 rounded-md border border-solid border-[#a2a2a2] bg-[#a2a2a2];*/
  42. /* }*/
  43. /*}*/