mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
227133c1ab
- 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
27 lines
476 B
JavaScript
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: []
|
|
};
|