Skip to content

Commit 1fd0db3

Browse files
authored
ORV2-3447 - UX Bug: Bridge Calculation Tool - diagram way too big (#1809)
Co-authored-by: GlenAOT <[email protected]>
1 parent 14f1607 commit 1fd0db3

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

frontend/src/features/bridgeFormulaCalculationTool/BFCTDashboard.scss

+17-2
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,32 @@
66
.bfct-dashboard {
77
&__split {
88
display: flex;
9+
justify-content: flex-start;
10+
align-items: center;
911
gap: 3rem;
1012
padding: 4rem 0;
1113
border-bottom: 1px solid orbcStyles.$bc-border-grey;
1214
}
1315

1416
&__info-banner {
1517
font-weight: normal;
16-
width: 100%;
18+
width: 50%;
19+
max-width: 792px;
1720
}
1821

1922
&__image {
20-
width: 100%;
23+
width: 50%;
24+
max-width: 792px;
25+
max-height: 246px;
26+
}
27+
}
28+
29+
@media screen and (max-width: 1024px) {
30+
.bfct-dashboard__split {
31+
flex-direction: column;
32+
33+
& > * {
34+
width: 100%;
35+
}
2136
}
2237
}

0 commit comments

Comments
 (0)