mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
fix(web) overflow issue on Recent Activities (#361)
This commit is contained in:
parent
3da594ec75
commit
1fb5a68b7d
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ function Table({ columns, data }: TableProps) {
|
||||||
// Render the UI for your table
|
// Render the UI for your table
|
||||||
return (
|
return (
|
||||||
<div className="inline-block min-w-full mt-4 mb-2 align-middle">
|
<div className="inline-block min-w-full mt-4 mb-2 align-middle">
|
||||||
<div className="overflow-auto bg-white shadow dark:bg-gray-800 rounded-lg">
|
<div className="bg-white shadow dark:bg-gray-800 rounded-lg">
|
||||||
<table {...getTableProps()} className="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
|
<table {...getTableProps()} className="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
|
||||||
<thead className="bg-gray-50 dark:bg-gray-800">
|
<thead className="bg-gray-50 dark:bg-gray-800">
|
||||||
{headerGroups.map((headerGroup) => {
|
{headerGroups.map((headerGroup) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue