I am facing an issue where the light blue div is not taking up the entire screen space as intended. In addition, the dark blue div is visible even when there is no content in it, while the light blue one remains hidden despite setting max-height (I also tried using min-height).
<body>
<div class="bg-blue-500 min-w-full min-h-10"></div>
<div class="bg-blue-400 max-h-full w-1/4">a</div>
<body>
Setting min-h-10 and values below seems to work for the light blue (bg-blue-400), but anything above that does not produce the desired result.