Skip to content

Commit

Permalink
Overflow display fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daku-de committed Jul 16, 2024
1 parent 77cbc9a commit 492dacb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/app/dashboard/download/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const DownloadPage: React.FC = () => {
</Tab>
</TabList>
<TabPanel>
<div className="overflow-x-auto">
<div className="overflow-x-auto overflow-y-clip">
<table className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-50">
<tr>
Expand Down Expand Up @@ -174,7 +174,7 @@ const DownloadPage: React.FC = () => {
</TabPanel>

<TabPanel>
<div className="overflow-x-auto">
<div className="overflow-x-auto overflow-y-clip">
<table className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-50">
<tr>
Expand Down

0 comments on commit 492dacb

Please sign in to comment.