mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Merged PR 1462: Implementierung Packstück Kontolle
This commit is contained in:
committed by
Nino Righi
parent
bf18b83a75
commit
ae08e46b30
13
tailwind-plugins/label.plugin.js
Normal file
13
tailwind-plugins/label.plugin.js
Normal 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'),
|
||||
},
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user