From 2e204a7cee5ab2c71a25a29cbce56f0050fbb3fa Mon Sep 17 00:00:00 2001 From: Yosevu Kilonzo Date: Sun, 11 Aug 2024 22:33:14 -0400 Subject: [PATCH] chore: add custom spin-slow animation to config --- tailwind.config.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index ebda7e6..c123581 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,11 +1,15 @@ module.exports = { content: [ "./index.html", - "./src/**/*.{js,ts,jsx,tsx}", - "./content-script/src/**/*.{js,ts,jsx,tsx}" + "./src/**/*.{js,ts,jsx,tsx}", + "./content-script/src/**/*.{js,ts,jsx,tsx}" ], theme: { - extend: {}, + extend: { + animation: { + 'spin-slow': 'spin 20s linear infinite', + }, + }, }, plugins: [], } \ No newline at end of file