JSFiddle - React, Tailwind, and code Playground
by riaanc
HTML
<div class="alertPanel">
<table style="width: 100%; border: 1px solid blue; margin: 10px 0px 10px 0px">
<tr>
<td style="width: 40px"></td>
<td style="">Some information</td>
</tr>
</table>
</div>
CSS
.alertPanel
{
position: fixed;
left: 10px;
right: 10px;
bottom: 10px;
min-height: 40px;
border: 1px solid red;
border-radius: 25px;
padding: 0px 10px 0px 10px;
}