Merged PR 1462: Implementierung Packstück Kontolle

This commit is contained in:
Lorenz Hilpert
2023-01-09 15:38:08 +00:00
committed by Nino Righi
parent bf18b83a75
commit ae08e46b30
411 changed files with 4054 additions and 4951 deletions

View File

@@ -0,0 +1,13 @@
const plugin = require('tailwindcss/plugin');
module.exports = plugin(function ({ addComponents, theme }) {
addComponents({
'.isa-label': {
display: 'inline-block',
padding: `0 ${theme('padding.4')}`,
borderRadius: theme('borderRadius.DEFAULT'),
color: theme('colors.white'),
backgroundColor: theme('colors.gray.500'),
},
});
});