김재형

Change FileListItem color

......@@ -12,7 +12,7 @@ export function FileListItem({ item }: { item: FileItem }) {
<Link
className="ant-btn ant-btn-link ant-btn-sm"
to={`/folder/${item.id}`}
style={{ padding: 0 }}
style={{ padding: 0, color: "#001529" }}
>
<FolderFilled /> <span>{item.name}</span>
</Link>
......@@ -21,7 +21,7 @@ export function FileListItem({ item }: { item: FileItem }) {
type="link"
size="small"
onClick={() => download(item.id)}
style={{ padding: 0 }}
style={{ padding: 0, color: "#001529" }}
>
<FileFilled /> {item.name}
</Button>
......