fix(web): contain jobs table on narrow screens
This commit is contained in:
@@ -347,7 +347,8 @@ export function JobsPage({ dataSource, refreshSignal = 0 }: JobsPageProps) {
|
|||||||
) : null}
|
) : null}
|
||||||
{!loading && !failed && result ? (
|
{!loading && !failed && result ? (
|
||||||
<>
|
<>
|
||||||
<table aria-label="Jobs">
|
<div className="table-scroll" role="region" aria-label="Jobs table" tabIndex={0}>
|
||||||
|
<table className="dense-table" aria-label="Jobs">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th
|
<th
|
||||||
@@ -452,6 +453,7 @@ export function JobsPage({ dataSource, refreshSignal = 0 }: JobsPageProps) {
|
|||||||
))}
|
))}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
<nav aria-label="Jobs pagination">
|
<nav aria-label="Jobs pagination">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|||||||
Reference in New Issue
Block a user