Skip to content

Commit

Permalink
(fix) O3-3247: Fixed styling for ward patient banner in the transfer …
Browse files Browse the repository at this point in the history
…form (#1279)
  • Loading branch information
vasharma05 authored Aug 14, 2024
1 parent 7f570ca commit 859a449
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 @@ -10,6 +10,10 @@
color: #393939;
}

.patientWorkspaceBanner {
margin: (-(layout.$spacing-05)) (-(layout.$spacing-05)) layout.$spacing-05 (-(layout.$spacing-05));
}

.field {
margin-bottom: layout.$spacing-05;
& > h2 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ export default function PatientTransferAndSwapWorkspace(props: WardPatientWorksp

return (
<div className={styles.workspaceContent}>
<WardPatientWorkspaceBanner {...props?.wardPatient} />
<div className={styles.patientWorkspaceBanner}>
<WardPatientWorkspaceBanner {...props?.wardPatient} />
</div>
{isBedManagementModuleInstalled && (
<div>
<h2 className={styles.productiveHeading02}>{t('typeOfTransfer', 'Type of transfer')}</h2>
Expand Down

0 comments on commit 859a449

Please sign in to comment.