JSFiddle - React, Tailwind, and code Playground

HTML

<table class="block logo">
    <colgroup>
        <col style="width:50%"/>
        <col style="width:50%"/>
    </colgroup>
    <tr>
        <td>
            <table class="menu">
                <tr>
                    <td>Item 1</td>
                    <td>Item 2</td>
                </tr>
            </table>
        </td>
    </tr>
</table>

CSS

table {
    width: auto;
    float: right;
}
table.menu {
    width: auto;
    margin-right: 0px;
}