mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-11-08 22:43:50 +00:00
13 lines
194 B
JavaScript
13 lines
194 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
spacing: {
|
|
0.75: '0.1875rem'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|