Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

tailwind.config.cjs 454 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. const defaultTheme = require('tailwindcss/defaultTheme');
  2. /** @type {import('tailwindcss').Config} */
  3. export default {
  4. darkMode: 'class',
  5. content: ['./src/**/*.{html,js,svelte,ts}'],
  6. theme: {
  7. extend: {
  8. // fontFamily: {
  9. // sans: ['"Inter"', ...defaultTheme.fontFamily.sans]
  10. // },
  11. fontSize: {
  12. smd: '0.94rem'
  13. }
  14. }
  15. },
  16. plugins: [
  17. require('tailwind-scrollbar')({ nocompatible: true }),
  18. require('@tailwindcss/typography')
  19. ]
  20. };
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...