Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <aura:attribute name="Impact1Title" type="Aura.Component[]">
  2. <div class="red">
  3. <lightning:outputField variant="label-hidden" fieldName="Project_Title__c" class="red" />
  4. </div>
  5. <ul>
  6. <li class="red">I'm red.</li>
  7. </ul>
  8. </aura:attribute>
  9.  
  10.  
  11. .THIS .red {
  12. background-color: red;
  13. font-size:5rem;}
  14.  
  15. <aura:if isTrue="{!not(empty('Impact_1__c'))}">
  16. <lightning:card title="{!v.Impact1Title}" iconName="action:approval" class="cards" />
  17. </aura:if>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement