1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
mc.langrock.info/tailwind.config.js

15 lines
365 B
JavaScript
Raw Permalink Normal View History

2020-01-27 01:10:25 +01:00
module.exports = {
purge: ['./src/**/*.html', './src/**/*.vue', './src/**/*.js', './src/**/*.postcss'],
2020-01-27 01:10:25 +01:00
theme: {
extend: {
fontFamily: {
body: ['Libre Baskerville', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif'],
2021-04-08 00:48:33 +02:00
maintitle: ['Philosopher', 'serif'],
2020-01-27 01:10:25 +01:00
},
fontSize: {
'7xl': '5rem',
},
},
},
}