Integrate booking edit into myep spa

This commit is contained in:
Björn Fromme
2020-09-22 17:21:00 +02:00
committed by Björn Fromme
parent 213b75b863
commit dbe4336550
23 changed files with 4785 additions and 2877 deletions
+33
View File
@@ -0,0 +1,33 @@
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: {
mode: 'layers',
layers: ['components', 'utilities'],
content: [
'./public/typo3conf/ext/ep_theme/Resources/Private/Layouts/**/*.html',
'./public/typo3conf/ext/ep_theme/Resources/Private/Partials/**/*.html',
'./public/typo3conf/ext/ep_theme/Resources/Private/Templates/**/*.html',
'./public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/**/*.js',
'./public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/**/*.vue',
],
},
theme: {
extend: {
colors: {
overlay: {
'white': 'rgba(255, 255, 255, 0.85)'
}
}
},
},
variants: {},
plugins: [
require('@tailwindcss/custom-forms'),
],
corePlugins: {
container: false,
}
}