Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -12,7 +12,7 @@ export function FileListItem({ item }: { item: FileItem }) { | ... | @@ -12,7 +12,7 @@ export function FileListItem({ item }: { item: FileItem }) { |
12 | <Link | 12 | <Link |
13 | className="ant-btn ant-btn-link ant-btn-sm" | 13 | className="ant-btn ant-btn-link ant-btn-sm" |
14 | to={`/folder/${item.id}`} | 14 | to={`/folder/${item.id}`} |
15 | - style={{ padding: 0 }} | 15 | + style={{ padding: 0, color: "#001529" }} |
16 | > | 16 | > |
17 | <FolderFilled /> <span>{item.name}</span> | 17 | <FolderFilled /> <span>{item.name}</span> |
18 | </Link> | 18 | </Link> |
... | @@ -21,7 +21,7 @@ export function FileListItem({ item }: { item: FileItem }) { | ... | @@ -21,7 +21,7 @@ export function FileListItem({ item }: { item: FileItem }) { |
21 | type="link" | 21 | type="link" |
22 | size="small" | 22 | size="small" |
23 | onClick={() => download(item.id)} | 23 | onClick={() => download(item.id)} |
24 | - style={{ padding: 0 }} | 24 | + style={{ padding: 0, color: "#001529" }} |
25 | > | 25 | > |
26 | <FileFilled /> {item.name} | 26 | <FileFilled /> {item.name} |
27 | </Button> | 27 | </Button> | ... | ... |
-
Please register or login to post a comment