From eaa4f1343af4deca599de17096fe0e156eb52ef8 Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa Date: Fri, 14 Jul 2023 22:14:17 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(tailwind.config.js):=20chang?= =?UTF-8?q?e=20height=20value=20from=20100=20to=20'100vh'=20to=20ensure=20?= =?UTF-8?q?full=20viewport=20height=20for=20slideDown=20animation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/tailwind.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/tailwind.config.js b/src/frontend/tailwind.config.js index 429b9b26a..54156f712 100644 --- a/src/frontend/tailwind.config.js +++ b/src/frontend/tailwind.config.js @@ -132,7 +132,7 @@ module.exports = { keyframes: { slideDown: { from: { height: 0 }, - to: { height: 100 }, + to: { height: '100vh' }, }, slideUp: { from: { height: "var(--radix-accordion-content-height)" },