fix sketch list view bug which made the nav look ugly
This commit is contained in:
parent
17efc42778
commit
89c641c845
3 changed files with 25 additions and 17 deletions
|
@ -22,24 +22,26 @@ class SketchListView extends React.Component {
|
||||||
exportProjectAsZip={this.props.exportProjectAsZip}
|
exportProjectAsZip={this.props.exportProjectAsZip}
|
||||||
cloneProject={this.props.cloneProject}
|
cloneProject={this.props.cloneProject}
|
||||||
/>
|
/>
|
||||||
<table className="sketches-table" summary="table containing all saved projects">
|
<div className="sketches-table-container">
|
||||||
<thead>
|
<table className="sketches-table" summary="table containing all saved projects">
|
||||||
<tr>
|
<thead>
|
||||||
<th scope="col">Name</th>
|
<tr>
|
||||||
<th scope="col">Created</th>
|
<th scope="col">Name</th>
|
||||||
<th scope="col">Last Updated</th>
|
<th scope="col">Created</th>
|
||||||
</tr>
|
<th scope="col">Last Updated</th>
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{this.props.sketches.map(sketch =>
|
|
||||||
<tr className="sketches-table__row" key={sketch.id}>
|
|
||||||
<td scope="row"><Link to={`/projects/${sketch._id}`}>{sketch.name}</Link></td>
|
|
||||||
<td>{moment(sketch.createdAt).format('MMM D, YYYY')}</td>
|
|
||||||
<td>{moment(sketch.updatedAt).format('MMM D, YYYY')}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
)}
|
</thead>
|
||||||
</tbody>
|
<tbody>
|
||||||
</table>
|
{this.props.sketches.map(sketch =>
|
||||||
|
<tr className="sketches-table__row" key={sketch.id}>
|
||||||
|
<td scope="row"><Link to={`/projects/${sketch._id}`}>{sketch.name}</Link></td>
|
||||||
|
<td>{moment(sketch.createdAt).format('MMM D, YYYY')}</td>
|
||||||
|
<td>{moment(sketch.updatedAt).format('MMM D, YYYY')}</td>
|
||||||
|
</tr>
|
||||||
|
)}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: #{10 / $base-font-size}rem 0;
|
padding: #{10 / $base-font-size}rem 0;
|
||||||
padding-left: #{170 / $base-font-size}rem;
|
padding-left: #{170 / $base-font-size}rem;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sketches-table__row {
|
.sketches-table__row {
|
||||||
|
|
|
@ -4,3 +4,8 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sketches-table-container {
|
||||||
|
flex: 1 0 0%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
Loading…
Reference in a new issue