Skip to content

Commit

Permalink
fix: improve tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFlashAccount committed Jan 27, 2024
1 parent f71aae5 commit b5e00ec
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @type {import('tailwindcss').TailwindConfig}
* @type {import('tailwindcss').Config}
*/
const config = {
content: [
Expand All @@ -8,25 +8,11 @@ const config = {
],
theme: {
extend: {
fontFamily: {
sans: ["OpenRunde", "OpenRunde Fallback"],
},
keyframes: {
"move-bg": {
to: {
backgroundPosition: "400% 0",
},
},
},
animation: {
"move-bg": "move-bg 7s infinite linear",
},
fontFamily: { sans: ["OpenRunde", "OpenRunde Fallback"] },
keyframes: { "move-bg": { to: { backgroundPosition: "400% 0" } } },
animation: { "move-bg": "move-bg 7s infinite linear" },
},
},
variants: {
extend: {},
},
plugins: [],
};

module.exports = config;

0 comments on commit b5e00ec

Please # to comment.