🐛 fix(tailwind.config.js): change height value from 100 to '100vh' to ensure full viewport height for slideDown animation

This commit is contained in:
Cristhian Zanforlin Lousa 2023-07-14 22:14:17 -03:00
commit eaa4f1343a

View file

@ -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)" },