mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 04:32:57 +03:00
c40d532880
* Fix typo * Update landing page with components from TailwindUI * Update copy * Update FAQ and testimonials * Add feature section * Update copy for integration * Implement feedback * Remove github button JS * Update headings * Update gray values * Update CTA section * Add copy
24 lines
374 B
JavaScript
24 lines
374 B
JavaScript
module.exports = {
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '1rem',
|
|
},
|
|
extend: {
|
|
spacing: {
|
|
'44': '11rem'
|
|
},
|
|
width: {
|
|
'31percent': '31%',
|
|
}
|
|
},
|
|
},
|
|
variants: {
|
|
textColor: ['responsive', 'hover', 'focus', 'group-hover']
|
|
},
|
|
corePlugins: {},
|
|
plugins: [
|
|
require('@tailwindcss/ui')
|
|
],
|
|
}
|