index.scss 401 B

123456789101112131415161718192021222324252627282930
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @import "./vant";
  5. @import "./fix";
  6. .page {
  7. &-container {
  8. display: flex;
  9. flex-direction: column;
  10. height: 100vh;
  11. }
  12. &-header, &-footer {
  13. flex: none;
  14. }
  15. &-content {
  16. flex: auto;
  17. }
  18. }
  19. .page-header {
  20. position: relative;
  21. z-index: 2;
  22. }
  23. :root:root {
  24. --primary-color: #34a76b;
  25. --primary-color-hover: #38ff6e;
  26. }