2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00
books/tailwind.config.js
Faris Ansari 227133c1ab feat: InvoiceForm
- SalesInvoice List with badges in Status column
- QuickEdit view in InvoiceForm and ListView
- Native Date control for now
- Wrap Quick Edit and Invoice Form in keep-alive
2019-10-11 15:25:50 +05:30

27 lines
476 B
JavaScript

module.exports = {
theme: {
fontFamily: {
sans: ['Inter var experimental', 'sans-serif'],
},
extend: {
maxHeight: {
'64': '16rem'
},
minWidth: {
'56': '14rem'
},
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: []
};