Skip to content

Commit

Permalink
Merge pull request #13 from udohjeremiah/dev
Browse files Browse the repository at this point in the history
Add blink in tailwind.config.js file
  • Loading branch information
udohjeremiah authored Nov 4, 2023
2 parents a5732a7 + 5839be1 commit c62c237
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ module.exports = {
fontFamily: {
monoton: ["var(--font-monoton)", "sans-serif"],
},
keyframes: {
blink: {
"0%": { opacity: 0.2 },
"20%": { opacity: 1 },
"100%": { opacity: 0.2 },
},
},
animation: {
blink: "blink 1.5s infinite both",
},
},
},
darkMode: "class",
Expand Down

0 comments on commit c62c237

Please sign in to comment.