1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-09 08:32:48 +00:00

fix(Upload History): change table layout to fixed

This commit is contained in:
2019-12-31 15:25:39 -06:00
parent b74f664365
commit 649e0f345f
2 changed files with 4 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ export class UploadHistory extends React.Component<IProps, IState> {
return (
<div className="card">
<div className="card__header">Upload History</div>
<table className="table table--ellipsis">
<table className="table table--ellipsis table--fixed">
<thead>
<tr>
<th className="hide-small">Date</th>

View File

@@ -8,6 +8,9 @@
th {
padding: 10px 5px;
}
&--fixed {
table-layout: fixed;
}
}
.table--ellipsis {