石墨仪设备 前端仓库
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.

26 lines
713 B

6 months ago
6 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: linear-gradient(90deg, #0657c0 24%, #096ae0 101%);
  10. border-radius: 4px;
  11. color: white;
  12. }
  13. .btn-light {
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. background: linear-gradient(180deg, #ebf1fa 0%, #f8fafd 100%);
  18. box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.3), 0px 1px 5px 0px rgba(173, 173, 173, 0.47);
  19. border-radius: 4px;
  20. color: var(--primaryColor);
  21. }
  22. .component-page {
  23. height: calc(100vh - var(--headerHeight) - var(--footerHeight));
  24. width: calc(100vw - var(--menuAreaWidth));
  25. }
  26. }