Skip to content

Commit

Permalink
Minor styling tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmale committed Jan 17, 2024
1 parent b8907d0 commit 968a8b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
import { type ImmunizationGrouped } from '../../types';
import { formatDate, parseDate } from '@openmrs/esm-framework';
import { immunizationFormSub } from '../utils';
import styles from './immunizations-sequence-table.scss';

interface SequenceTableProps {
immunizationsByVaccine: ImmunizationGrouped;
Expand Down Expand Up @@ -85,7 +86,9 @@ const SequenceTable: React.FC<SequenceTableProps> = ({ immunizationsByVaccine, l
return (
<TableRow key={row.id}>
{row.cells.map((cell) => (
<TableCell key={cell?.id}>{cell?.value}</TableCell>
<TableCell key={cell?.id} className={styles.tableCell}>
{cell?.value}
</TableCell>
))}
</TableRow>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.tableCell {
padding: 0rem 1.5rem !important;
}

0 comments on commit 968a8b0

Please sign in to comment.