delphi.market/tailwind.config.js
ekzyis 9f6a2f2151 wip: create market
TODO:
* redirect to /markets/:id
  * redirect already works but page does not exist
  * make sure invoice modal is closed on redirect
* add button to close invoice
2024-08-09 04:32:25 -05:00

30 lines
565 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./server/router/pages/**/*.templ"],
theme: {
container: {
center: true,
padding: '1rem'
},
extend: {
colors: {
'background': '191d21',
'muted': '#6c757d',
},
},
},
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
'@screen lg': {
maxWidth: '768px',
},
'@screen xl': {
maxWidth: '768px',
},
}
})
}
],
}