How to align items to center on mobile and left on desktop in tailwind css
I tried some thing like this <div className="flex w-full lg:justify-start md:justify-center sm:justify-center sm:items-center"> <Button title={data.title as string}></Button> </div> But it is always left aligned on mobile. It should be center on mobile and left on desktop