1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +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 ( return (
<div className="card"> <div className="card">
<div className="card__header">Upload History</div> <div className="card__header">Upload History</div>
<table className="table table--ellipsis"> <table className="table table--ellipsis table--fixed">
<thead> <thead>
<tr> <tr>
<th className="hide-small">Date</th> <th className="hide-small">Date</th>

View File

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