mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
eb348c7210
- Create a new document - Rename a document - Auto save document on value change
21 lines
376 B
JavaScript
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: []
|
|
};
|