Skip to content

Commit

Permalink
[DUOS-2788][risk=no] Fix edit button styling (#2394)
Browse files Browse the repository at this point in the history
  • Loading branch information
rushtong authored Nov 13, 2023
1 parent 7833599 commit d65486b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
8 changes: 6 additions & 2 deletions src/pages/researcher_console/DatasetSubmissionsTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import loadingIndicator from '../../images/loading-indicator.svg';
import SortableTable from '../../components/sortable_table/SortableTable';
import {concat, isNil, join} from 'lodash/fp';
import Button from '@mui/material/Button';
import styles from './DatasetTerms.module.css';


export default function DatasetSubmissionsTable(props) {
Expand Down Expand Up @@ -81,7 +80,12 @@ export default function DatasetSubmissionsTable(props) {
<div>
<Button
href={editLink}
className={styles['action-button']}>
sx={{
fontSize: '1.25rem',
border: '1px solid #0948B7',
borderRadius: 1,
height: 25
}}>
Edit
</Button>
</div>;
Expand Down
9 changes: 0 additions & 9 deletions src/pages/researcher_console/DatasetTerms.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,3 @@
display: flex;
justify-content: flex-end;
}

.action-button {
font-size: 14px;
border: 1px solid #0948B7;
border-radius: 4px;
height: 25px;
cursor: pointer;
color: #0948B7;
}

0 comments on commit d65486b

Please sign in to comment.