Parent dive has hidden property, and want to override the child property to make it flex
Answered
Bald Eagle posted this in #help-forum
Bald EagleOP
<div className="hidden lg-plus:block bg-gray-900 w-full">
<div className="flex space-x-4">
<div className="bg-black px-4 py-1 rounded flex items-center justify-center space-x-2">
<PiCoinsDuotone className="text-yellow-500" />
<span className="text-yellow-500">0.00</span>
<AiFillPlusCircle
className="block lg-plus:hidden text-yellow-400"
size={28}
/>
</div>
</div>
<div/>
<div className="flex space-x-4">
<div className="bg-black px-4 py-1 rounded flex items-center justify-center space-x-2">
<PiCoinsDuotone className="text-yellow-500" />
<span className="text-yellow-500">0.00</span>
<AiFillPlusCircle
className="block lg-plus:hidden text-yellow-400"
size={28}
/>
</div>
</div>
<div/>
Answered by Bald Eagle
I just set all the divs as hidden 1by1 instead of the parent
Seems less issue like this
Seems less issue like this
1 Reply
Bald EagleOP
I just set all the divs as hidden 1by1 instead of the parent
Seems less issue like this
Seems less issue like this
Answer