JSFiddle - React, Tailwind, and code Playground
by rdenver6
HTML
<div class="container-fluid" style="margin-top: 10px">
<div class="table-row">
<div class="wrapper attributes">
<div class="column title">App crashes when dragged by title bar</div>
<div class="column comment">Eddie, can you please take a look. We want this fixed pretty soon.</div>
</div>
</div>
</div>
CSS
.table-row {
display: flex;
display: -webkit-flex;
flex-direction: row;
-webkit-flex-direction: row;
flex-wrap: no-wrap;
-webkit-flex-wrap: no-wrap;
width: 100%;
padding-left: 15px;
padding-right: 15px;
}
.wrapper {
display: flex;
display: -webkit-flex;
flex-direction: row;
-webkit-flex-direction: row;
}
.column {
flex-grow: 0;
-webkit-flex-grow: 0;
flex-shrink: 0;
-webkit-flex-shrink: 0;
vertical-align: top;
}
.table-row {
border-bottom: 1px solid #e0e0e0;
border-collapse: collapse;
padding-top: 2px;
}