Skip to content

Commit da50b5b

Browse files
author
Mukul Tayal
committed
healthy icon fix in app status card
1 parent 3093edc commit da50b5b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/components/app/details/appDetails/AppStatusCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const AppStatusCard = ({ appDetails, status, cardLoading, setDetailed, message }
7373
</div>
7474
<div className="flex br-4">
7575
<figure
76-
className={`${status.toLowerCase()} h-24 w-24`}
76+
className={`dc__app-summary__icon ${status.toLowerCase()} h-24 w-24`}
7777
style={{ margin: 'auto', backgroundSize: 'contain, contain' }}
7878
/>
7979
</div>

src/components/app/details/appDetails/appDetails.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1794,9 +1794,11 @@ table.resource-tree {
17941794

17951795
.source-info-container,
17961796
.app-details-info-card {
1797-
.healthy {
1798-
background-size: contain, contain;
1799-
background: url(../../../../assets/icons/appstatus/ic-heart-green.svg), transparent;
1797+
.dc__app-summary__icon {
1798+
&.healthy {
1799+
background-size: contain, contain;
1800+
background: url(../../../../assets/icons/appstatus/ic-heart-green.svg), transparent;
1801+
}
18001802
}
18011803

18021804
.mw-340 {

0 commit comments

Comments
 (0)