Add inherit colour

This commit is contained in:
Oliver Davies 2019-04-24 00:19:28 +01:00
parent 7a30becd95
commit 00d7134a27
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,6 @@
module.exports = {
plugins: {
tailwindcss: "",
tailwindcss: "./tailwind.config.js",
autoprefixer: {}
}
}

9
tailwind.config.js Normal file
View file

@ -0,0 +1,9 @@
module.exports = {
theme: {
extend: {
colors: {
inherit: 'inherit'
}
}
}
}