https://i.sstatic.net/4YInI.png
https://i.sstatic.net/hu8mG.png
https://i.sstatic.net/Q51ha.png I am looking to activate an onClick event on the body where discussions and icons are located. While triggering onClick on the body itself poses no issue, I am facing complications with the space in the area that causes it to malfunction. Is there a solution to eliminate this gap and enable full clickable functionality for the entire body?
<div class="d-flex flex-column border border-primary mt-2 " style="max-width: 400px ; height: 130px;">
<div class="w-100 bg-warning text-center p-2">
<a href="">Some content from a map</a>
</div>
<div class="d-flex flex-column align-items-stretch " onclick="alert('hey')">
<div class="d-flex align-items-stretch justify-content-between pt-4 pb-2 px-2 flex-1 d-inline-block" >
<text class="bg-warning "> discussed </text>
<div onclick="alert('hey click me')">icons here</div>
</div>
</div>
</div>