mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
14 lines
373 B
JavaScript
14 lines
373 B
JavaScript
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'),
|
|
},
|
|
});
|
|
});
|