Skip to content

Commit 3d3978c

Browse files
committed
BN-71 | Fix. Consultation Pad Position
1 parent dc0a2c0 commit 3d3978c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/components/clinical/patientHeader/PatientHeader.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ const PatientHeader: React.FC<PatientHeaderProps> = ({
2828
<Column
2929
sm={4}
3030
md={8}
31-
lg={isActionAreaVisible ? 10 : 13}
32-
xl={isActionAreaVisible ? 10 : 13}
31+
lg={isActionAreaVisible ? 16 : 13}
32+
xl={isActionAreaVisible ? 16 : 13}
3333
>
3434
<PatientDetails />
3535
</Column>
3636
<Column
3737
sm={4}
3838
md={8}
39-
lg={isActionAreaVisible ? 6 : 3}
40-
xl={isActionAreaVisible ? 6 : 3}
39+
lg={isActionAreaVisible ? 16 : 3}
40+
xl={isActionAreaVisible ? 16 : 3}
4141
className={styles.controls}
4242
>
4343
<Button

src/components/clinical/patientHeader/styles/PatientHeader.module.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
@use "@carbon/react/scss/breakpoint" as *;
2+
@use "@carbon/react/scss/spacing" as *;
23

34
.header {
45
padding: 0 !important;
56
}
67

78
.controls {
89
align-content: center;
10+
padding-block: $spacing-04 !important;
911
}
1012

1113
@include breakpoint-down(lg) {

0 commit comments

Comments
 (0)