File tree Expand file tree Collapse file tree
common/src/components/permits
core-web/src/styles/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,14 +64,6 @@ const ViewPermitOverview: FC<ViewPermitOverviewProps> = ({ latestAmendment }) =>
6464
6565 return (
6666 < div className = "view-permits-content" >
67- { permit ?. mine ?. length > 1 && (
68- < Alert
69- className = "margin-large--bottom"
70- message = "This permit is associated with multiple mines, please review the associated mine list for more details"
71- type = "warning"
72- showIcon
73- />
74- ) }
7567 < Row justify = "space-between" align = "middle" >
7668 < Col >
7769 < Title className = "margin-none padding-lg--top padding-lg--bottom" level = { 2 } >
@@ -85,6 +77,14 @@ const ViewPermitOverview: FC<ViewPermitOverviewProps> = ({ latestAmendment }) =>
8577 { permit && mine ? (
8678 < Row >
8779 < Col span = { 12 } className = "view-permits-detail-section" >
80+ { permit . mine ?. length > 1 && (
81+ < Alert
82+ className = "margin-medium--bottom permit-multi-mine-alert"
83+ message = "This permit is associated with multiple mines, please review the associated mine list for more details"
84+ type = "warning"
85+ showIcon
86+ />
87+ ) }
8888 < Title level = { 4 } > Permit Details</ Title >
8989 < Row >
9090 < Col span = { 12 } >
Original file line number Diff line number Diff line change 3737 }
3838}
3939
40+ .permit-multi-mine-alert {
41+ .ant-alert-message {
42+ font-size : 0.9em ;
43+ }
44+ }
45+
4046.view-permits-detail-section {
4147 padding : 24px 20px ;
4248
You can’t perform that action at this time.
0 commit comments