From 66b4c591bfba43581d0412090cf121841a440076 Mon Sep 17 00:00:00 2001 From: Guru Date: Wed, 11 Dec 2024 10:36:01 +0530 Subject: [PATCH] fix: tailwind config --- demo/redirect-flow-example/tailwind.config.js | 46 +++++++++---------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/demo/redirect-flow-example/tailwind.config.js b/demo/redirect-flow-example/tailwind.config.js index f87a497..b058166 100644 --- a/demo/redirect-flow-example/tailwind.config.js +++ b/demo/redirect-flow-example/tailwind.config.js @@ -12,31 +12,6 @@ export default { ], theme: { extend: { - transitionProperty: { - height: "height", - spacing: "margin, padding", - }, - transformOrigin: { - top: "top", - }, - scale: { - "0": "0", - "100": "1", - }, - opacity: { - "0": "0", - "100": "1", - }, - fontSize: { - "2xs": "0.7rem", - }, - fontFamily: { - primary: ["Inter", ...defaultTheme.fontFamily.sans], - }, - backgroundImage: { - balanceCard: "url('/https://assets.web3pay.io/images/background.svg')", - walletConnectCard: "url('/images/wallet-connect-background.png')", - }, colors: { transparent: colors.transparent, app: { @@ -101,6 +76,27 @@ export default { blueBorder: "var(--app-blueBorder)", }, }, + transitionProperty: { + height: "height", + spacing: "margin, padding", + }, + transformOrigin: { + top: "top", + }, + scale: { + "0": "0", + "100": "1", + }, + opacity: { + "0": "0", + "100": "1", + }, + fontSize: { + "2xs": "0.7rem", + }, + fontFamily: { + primary: ["Inter", ...defaultTheme.fontFamily.sans], + }, keyframes: { fadeIn: { "0%": { opacity: "0" },