| 123456789101112131415161718192021222324252627282930 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- @import "./vant";
- @import "./fix";
- .page {
- &-container {
- display: flex;
- flex-direction: column;
- height: 100vh;
- }
- &-header, &-footer {
- flex: none;
- }
- &-content {
- flex: auto;
- }
- }
- .page-header {
- position: relative;
- z-index: 2;
- }
- :root:root {
- --primary-color: #34a76b;
- --primary-color-hover: #38ff6e;
- }
|