Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-CloudComputing
/
C_Team_KhuDrive
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
김재형
2020-06-17 15:55:08 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
20c325325245212d4c513789c6e7bcc1dd00fb24
20c32532
1 parent
4fce24c1
Change FileListItem color
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
frontend/src/file/FileListItem.tsx
frontend/src/file/FileListItem.tsx
View file @
20c3253
...
...
@@ -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>
...
...
Please
register
or
login
to post a comment