index.scss 349 B

123456789101112131415161718192021222324252627
  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. :root:root {
  20. --primary-color: #34a76b;
  21. --primary-color-hover: #38ff6e;
  22. }