| 123456789101112131415 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: [
- "./index.html",
- "./src/**/*.{vue,js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- minHeight: {
- 'screen-nav-height': 'calc(100vh - 120px)' // 假设导航高度是50px
- }
- },
- },
- plugins: [],
- }
|