system-uicons/tailwind.config.js

17 lines
304 B
JavaScript
Raw Normal View History

2020-05-25 12:01:32 +02:00
module.exports = {
2022-05-02 15:01:11 +02:00
content: ["./src/**/*.html"],
2020-05-25 12:01:32 +02:00
theme: {
2020-05-25 15:07:46 +02:00
fontFamily: {
mono: [
"Roboto Mono, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace",
],
},
2020-08-04 04:03:10 +02:00
scale: {
2022-05-11 04:02:56 +02:00
200: "2",
2020-08-04 04:03:10 +02:00
},
2020-05-25 12:01:32 +02:00
},
2020-05-26 03:33:49 +02:00
plugins: [
// Some useful comment
],
2020-05-25 15:07:46 +02:00
};