When designing for smaller screens (mobile version - screen width less than 600px), I typically use this:
<div className="flex flex-col"/>
However, for larger screens (screen width greater than 600px), I prefer not to use "flex-col" anymore.
What is the best approach to achieve this?