Skip to content

Commit 1df93b6

Browse files
committed
git file listing
1 parent a50e995 commit 1df93b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libs/remix-ui/git/src/components/panels/sourcecontrol/sourcecontrolitem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const SourceControlItem = (props: SourceControlItemProps) => {
5252
if (!file.statusNames || file.statusNames.length === 0) return null
5353

5454
return (<>
55-
<div data-status={file.statusNames.join('-')} data-file={file.filename} className="d-flex w-100 d-flex flex-row align-items-center">
55+
<div data-status={file.statusNames.join('-')} data-file={file.filename} className="d-flex w-100 d-flex flex-row align-items-center mt-2">
5656
<div className='pointer gitfile long-and-truncated' onClick={async () => await fileClick(file)}>
5757
<span className='fw-bold long-and-truncated'>{path.basename(file.filename)}</span>
5858
<div className='text-secondary long-and-truncated'> {file.filename}</div>

libs/remix-ui/git/src/style/index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
}
1919

2020
.commit-navigation:hover {
21-
background-color: var(--custom-select);
21+
background-color: var(--custom-onsurface-layer-2);
2222
}
2323

2424
.commitdetailsitem {
2525
align-items: baseline;
2626
}
2727

2828
.gitfile:hover {
29-
background-color : var(--custom-select);
29+
background-color : var(--custom-onsurface-layer-2);
3030
}
3131

3232
hr {
33-
background-color: var(--custom-select);
33+
background-color: var(--custom-onsurface-layer-2);
3434
}
3535

3636
.messageTip {

0 commit comments

Comments
 (0)