summaryrefslogtreecommitdiffstats
path: root/tailwind.js
blob: 542125dd9b26b6b7759a622c04f3cbee8b23aa99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 module.exports = {
    theme: {
      extend: {
        spacing: {
          '90': '90vh',
        },

        fontFamily: {
          'default': ['"Readex Pro"', 'sans-serif'],
          'fira': ['"Fira Code"', 'monospace']
        }
      }
    }
  }