skip to Main Content

Lower divs not stretching to the full viewport – Html

I am struggling to achieve a demanded effect. I have a following code structure: <div className="font-sans h-screen overflow-auto"> <> <div className="flex justify-center items-center w-full flex-col"> <div className="flex w-full"> <div className="sm:w-full md:bg-lightBlue bg-white pb-6 sm:pb-16 p-4 sm:p-14 sm:pt-2"> <div className="mx-auto px-4">…

VIEW QUESTION

Is it possible to use `@apply` in tailwindcss for keyframes?

I need to apply the following entering and leaving animation They are presented using tailwindcss classes Entering: "transform ease-out duration-300 transition" From: "translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2" To: "translate-y-0 opacity-100 sm:translate-x-0" Leaving: "transition ease-in duration-100" From: "opacity-100" To: "opacity-0" I tried…

VIEW QUESTION
Back To Top
Search