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.

34 lines
794 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. body {
  5. user-select: none;
  6. margin: 0;
  7. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
  8. "Droid Sans", "Helvetica Neue", sans-serif;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. background-color: #f6f7fb;
  12. }
  13. code {
  14. font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
  15. }
  16. :root {
  17. --primaryColor: #3e63cb;
  18. --bgColor: #f6f7fb;
  19. --headerHeight: 64px;
  20. --footerHeight: 64px;
  21. --sideWidth: 200px;
  22. --rightPadding: 40px;
  23. }
  24. @layer utilities {
  25. .main-page {
  26. height: calc(100vh - var(--headerHeight) - var(--footerHeight));
  27. width: calc(100vw - var(--sideWidth));
  28. background-color: var(--bgColor);
  29. }
  30. }