Guest User

Untitled

a guest
Apr 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. <aura:application extends="force:slds">
  2.  
  3. <!-- Pure HTML and SLDS Grid -->
  4. <div class="slds-text-heading--large slds-p-around--small">Pure HTML and SLDS Grid</div>
  5. <div class="slds-grid slds-wrap">
  6. <div class="slds-p-around--small slds-size--1-of-1">1</div>
  7. <div class="slds-p-around--small slds-size--1-of-2 slds-medium-size--5-of-6 slds-large-size--8-of-12">2</div>
  8. <div class="slds-p-around--small slds-size--1-of-2 slds-medium-size--1-of-6 slds-large-size--4-of-12">3</div>
  9. <div class="slds-p-around--small slds-size--1-of-1 slds-medium-size--1-of-2 slds-large-size--1-of-3">4</div>
  10. <div class="slds-p-around--small slds-size--1-of-1 slds-medium-size--1-of-2 slds-large-size--1-of-3">5</div>
  11. <div class="slds-size--1-of-1 slds-large-size--1-of-3">
  12. <div class="slds-grid slds-wrap">
  13. <div class="slds-p-around--small slds-size--1-of-2 slds-medium-size--1-of-1 slds-large-size--1-of-2">6</div>
  14. <div class="slds-p-around--small slds-size--1-of-2 slds-medium-size--1-of-1 slds-large-size--1-of-2">7</div>
  15. </div>
  16. </div>
  17. </div>
  18.  
  19. <!-- Lightning Layout and LayoutItem Components -->
  20. <div class="slds-text-heading--large slds-p-around--small slds-m-top--large">Lightning Layout and LayoutItem Components</div>
  21. <lightning:layout horizontalAlign="spread" multipleRows="true">
  22. <lightning:layoutItem padding="around-small" flexibility="grow" size="12">1</lightning:layoutItem>
  23. <lightning:layoutItem padding="around-small" flexibility="grow" size="8" mediumDeviceSize="10" largeDeviceSize="8">2</lightning:layoutItem>
  24. <lightning:layoutItem padding="around-small" flexibility="grow" size="4" mediumDeviceSize="2" largeDeviceSize="4">3</lightning:layoutItem>
  25. <lightning:layoutItem padding="around-small" flexibility="grow" size="4" mediumDeviceSize="6" largeDeviceSize="4">4</lightning:layoutItem>
  26. <lightning:layoutItem padding="around-small" flexibility="grow" size="4" mediumDeviceSize="6" largeDeviceSize="4">5</lightning:layoutItem>
  27. <lightning:layoutItem flexibility="grow" size="12" largeDeviceSize="4">
  28. <lightning:layout horizontalAlign="spread" multipleRows="true">
  29. <lightning:layoutItem padding="around-small" flexibility="grow" size="6" mediumDeviceSize="12" largeDeviceSize="6">6</lightning:layoutItem>
  30. <lightning:layoutItem padding="around-small" flexibility="grow" size="6" mediumDeviceSize="12" largeDeviceSize="6">7</lightning:layoutItem>
  31. </lightning:layout>
  32. </lightning:layoutItem>
  33. </lightning:layout>
  34.  
  35. </aura:application>
Add Comment
Please, Sign In to add comment