diff --git a/src/lib/util/promos/August2024.svelte b/src/lib/util/promos/August2024.svelte index 7a9b54e1..7a4e1b6c 100644 --- a/src/lib/util/promos/August2024.svelte +++ b/src/lib/util/promos/August2024.svelte @@ -1,5 +1,6 @@ -{#key currentTagline} - - {currentTagline.label} - - -{/key} +
+ {#key currentTagline} + + {currentTagline.label} + + + {/key} +
diff --git a/tailwind.config.cjs b/tailwind.config.cjs index d2b0cd08..18cb32c1 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -2,22 +2,7 @@ module.exports = { plugins: [require('daisyui')], content: ['./src/**/*.{html,js,svelte,ts}'], theme: { - extend: { - keyframes: { - fadeIn: { - '0%': { opacity: '0' }, - '100%': { opacity: '1' } - }, - fadeOut: { - '0%': { opacity: '1' }, - '100%': { opacity: '0' } - } - }, - animation: { - fadeIn: 'fadeIn 1s ease-in', - fadeOut: 'fadeOut 1s ease-in' - } - } + extend: {} }, variants: { extend: {}