标准版政企呼叫中心业务系统

tailwind.config.js 297B

123456789101112131415
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: [
  4. "./index.html",
  5. "./src/**/*.{vue,js,ts,jsx,tsx}",
  6. ],
  7. theme: {
  8. extend: {
  9. minHeight: {
  10. 'screen-nav-height': 'calc(100vh - 120px)' // 假设导航高度是50px
  11. }
  12. },
  13. },
  14. plugins: [],
  15. }