Last active
December 28, 2015 06:19
-
-
Save bradgignac/7455873 to your computer and use it in GitHub Desktop.
Polymer Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="rs-detail-section"> | |
<div class="rs-detail-section-header"> | |
<div class="rs-detail-section-title">{{title}}</div> | |
<div class="rs-detail-section-summary">{{summary}}</div> | |
<div class="rs-detail-section-toggle"></div> | |
</div> | |
<div class="rs-detail-section-body"> | |
<!-- This is all user-provided code that will appear in the section body. --> | |
<div class="rs-btn-group"> | |
<button class="rs-btn rs-btn-primary">Add Widget</button> | |
<button class="rs-btn rs-btn-secondary">Delete Widget</button> | |
</div> | |
<p>Some other stuff here...</p> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rs-section title="{{title}}" summary="{{summary}}"> | |
<!-- This is all user-provided code that will appear in the section body. --> | |
<div class="rs-btn-group"> | |
<button class="rs-btn rs-btn-primary">Add Widget</button> | |
<button class="rs-btn rs-btn-secondary">Delete Widget</button> | |
</div> | |
<p>Some other stuff here...</p> | |
</rs-section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment