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.

36 lines
774 B

3 months ago
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer utilities {
  5. .btn-dark {
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. background: var(--primaryColor);
  10. border: solid 1px var(--primaryColor);
  11. border-radius: 4px;
  12. color: white;
  13. }
  14. .btn-light {
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. background-color: transparent;
  19. border-radius: 4px;
  20. color: var(--primaryColor);
  21. border: solid 1px var(--primaryColor);
  22. }
  23. .btn-light:active {
  24. background-color: #e5e5e5;
  25. }
  26. .btn-light-disabled {
  27. color: #d6d6d6;
  28. border: solid 1px #d6d6d6;
  29. }
  30. .component-page {
  31. height: calc(100vh - var(--headerHeight) - var(--footerHeight));
  32. width: calc(100vw - var(--menuAreaWidth));
  33. background-color: #fff;
  34. }
  35. }