2
0
mirror of https://github.com/frappe/books.git synced 2024-11-09 23:30:56 +00:00
books/tailwind.config.js
Faris Ansari eb348c7210 fix: QuickEditForm
- Create a new document
- Rename a document
- Auto save document on value change
2019-10-06 03:11:33 +05:30

21 lines
376 B
JavaScript

module.exports = {
theme: {
fontFamily: {
sans: ['Inter var experimental', 'sans-serif']
},
extend: {
spacing: {
'72': '18rem',
'80': '20rem'
},
boxShadow: {
'outline-px': '0 0 0 1px rgba(66,153,225,0.5)'
}
}
},
variants: {
margin: ['responsive', 'first', 'hover', 'focus']
},
plugins: []
};