Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YongZL committed Jul 31, 2024
1 parent eb4e4b8 commit 57c9c20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ATable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type ATableProps = {
const ATable: FC<ATableProps> = ({ header = [], data = [] }) => {
return <>

<table>
<table className=" overflow-auto">
<tr className=" bg-[#FAFAFA] rounded-lg h-[50px] border-b-[#FFFFFF] ">
{header.map((item, i) => {
return <th key={`table_${i}`} className=" w-[200px]">{item.name}</th>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/files.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Files = () => {
</div>
{
userFriendlyAddress && (
<div className=' border-[#snow] border px-5 py-5 my-5'>
<div className=' border-[#snow] my-5'>
<div className=' text-3xl text-left text-black '>
My FIles
</div>
Expand Down

0 comments on commit 57c9c20

Please sign in to comment.