Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / docs / tailwind.config.js
blobe79e4484bb53bbb3fe16e9d066337038aaa25a9c
1 /** @type {import('tailwindcss').Config} */
2 export default {
3   content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
4   theme: {
5     extend: {
6       screens: {
7         'head-max-1199': {
8           max: '1199px',
9         },
10         'head-max-849': {
11           max: '849px',
12         },
13         'head-750': { min: '750px' },
14         'head-480-749': {
15           min: '480px',
16           max: '749px',
17         },
18         'head-max-479': { max: '479px' },
19       },
20     },
21     colors: {
22       current: 'currentColor',
23     },
24   },
25   plugins: [],