Skip to content

Commit

Permalink
Ready for PR
Browse files Browse the repository at this point in the history
  • Loading branch information
JodieM committed Aug 18, 2024
1 parent 7932367 commit 4c798b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="slds-grid grid-wrap">
<div class="slds-col slds-grid slds-grid_vertical">
<template lwc:if={hasHeader} class="slds-icon_container slds-var-m-right_small">
<div class="slds-col slds-size_1-of-1">
<div class="slds-col">
<template lwc:if={showTitle}>
<div class="slds-var-p-left_medium slds-var-p-bottom_x-small">
<h2 slot="title" class="slds-card__header-title">
Expand All @@ -22,13 +22,13 @@ <h2 slot="title" class="slds-card__header-title">
</div>
</template>
</div>
<div class="slds-col slds-size_1-of-1">
<div class="slds-col">
<template lwc:if={showDescription}>
<p class="slds-var-p-left_medium slds-var-p-right_x-small slds-var-p-bottom_small">{card.body}</p>
</template>
</div>
</template>
<div class="slds-col slds-size_1-of-1">
<div class="slds-col">
<!-- TODO: Do we put this in a Layout which would be responsive to the container, this could allow for empty slots too -->
<div class="slds-var-p-left_medium slds-clearfix">
<template if:true={results}>
Expand Down
4 changes: 2 additions & 2 deletions force-app/main/default/lwc/indicatorBundle/indicatorBundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ export default class IndicatorBundle extends LightningElement {
}

if(this.bundle.CardIconBackground || this.bundle.CardIconForeground ){
this.card.iconClass = 'cardIcon slds-var-m-right_xx-small ';
this.card.iconClass = 'cardIcon slds-var-m-right_x-small ';
} else {
this.card.iconClass = 'slds-var-m-right_xx-small ';
this.card.iconClass = 'slds-var-m-right_x-small ';
}

// console.log('Card Data');
Expand Down

0 comments on commit 4c798b2

Please sign in to comment.