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 af2bbd6 commit c8ee7db
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 @@ -25,14 +25,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 @@ -72,7 +72,7 @@ module.exports = {
},
minWidth: {
"140-px": "140px",
"48": "12rem",
48: "12rem",
},
backgroundSize: {
full: "100%",
Expand All @@ -93,7 +93,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 @@ -135,5 +137,6 @@ module.exports = {
},
},
]);
}),],
}),
],
};

0 comments on commit c8ee7db

Please sign in to comment.