Skip to content

Commit 60bee21

Browse files
committed
hard code the bg color on action items
1 parent 8d018b1 commit 60bee21

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/compounds/ActionsGroup/ActionsGroup.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const ActionsGroup = ({ initialFiles }) => {
3535
variant='primary'
3636
onClick={() => handleShow('ViewFiles')}
3737
role='presentation'
38+
bsPrefix='bg-secondary-8 list-group-item'
3839
>
3940
<FontAwesomeIcon icon='fa-file-lines' />
4041
View Files

src/compounds/ActionsGroup/actions/ViewFiles.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ViewFiles = ({ initialFiles, handleClose }) => {
2525

2626
return (
2727
<Offcanvas show onHide={handleClose} placement='end' scroll='true'>
28-
<Offcanvas.Header className='d-flex border-bottom px-3 py-2 bg-light' closeButton>
28+
<Offcanvas.Header className='d-flex border-bottom px-3 py-2 bg-secondary-8' closeButton>
2929
<Offcanvas.Title>Documents</Offcanvas.Title>
3030
</Offcanvas.Header>
3131
<Offcanvas.Body className='border rounded p-2 m-3'>

0 commit comments

Comments
 (0)