Minor issue - when I add the ribbon label to a table row, there is a small gap between the ribbon and the table. <table class='ui table'> <thead> <tr> <th>Name</th> <th>Date</th> <th>Email</th> </tr> </thead> <tbody> <tr> <td><div class='ui blue ribbon label'>Food</div>Not Happy</td> <td>Friday</td> <td>Email</td> </tr> </tbody> </table>  This is similiar to another reported issue - #45 (https://github.com/Semantic-Org/Semantic-UI/issues/45) which is closed now. I was able to resolve my issue with an inline style change: <div class='ui blue ribbon label' style='left:calc(-1rem - 1.0em);'> <table class='ui table'> <thead> <tr> <th>Name</th> <th>Date</th> <th>Email</th> </tr> </thead> <tbody> <tr> <td><div class='ui blue ribbon label' style='left:calc(-1rem - 1.0em);'>Food</div>Not Happy</td> <td>Friday</td> <td>Email</td> </tr> </tbody> </table> 