Skip to content

Commit

Permalink
style: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
einazare committed Mar 18, 2021
1 parent dad919f commit 538c4c3
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ module.exports = {
"screen-75": "75vh",
},
fontSize: {
"55": "55rem",
55: "55rem",
},
opacity: {
"80": ".8",
80: ".8",
},
zIndex: {
"2": 2,
"3": 3,
2: 2,
3: 3,
},
inset: {
"-100": "-100%",
Expand Down Expand Up @@ -65,7 +65,7 @@ module.exports = {
},
minWidth: {
"140-px": "140px",
"48": "12rem",
48: "12rem",
},
backgroundSize: {
full: "100%",
Expand All @@ -86,7 +86,9 @@ module.exports = {
"visited",
"disabled",
],
plugins: [require("@tailwindcss/forms"),plugin(function ({ addComponents, theme }) {
plugins: [
require("@tailwindcss/forms"),
plugin(function ({ addComponents, theme }) {
const screens = theme("screens", {});
addComponents([
{
Expand Down Expand Up @@ -128,5 +130,6 @@ module.exports = {
},
},
]);
}),],
}),
],
};

0 comments on commit 538c4c3

Please sign in to comment.