Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <link rel="import" href="../../salesforce/s1-elements/s1AnchorLightLabelonBottom.html">
  2.  
  3. <polymer-element name="my-element">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. width: 100%;
  10. height: 100%;
  11. box-sizing: border-box;
  12. }
  13. #s1_anchor_light_labelon_bottom {
  14. width: 320px;
  15. left: 360px;
  16. top: 130px;
  17. position: absolute;
  18. }
  19. </style>
  20. <s1-anchor-light-labelon-bottom id="s1_anchor_light_labelon_bottom"></s1-anchor-light-labelon-bottom>
  21. </template>
  22.  
  23. <script>
  24.  
  25. Polymer('my-element', {
  26.  
  27. });
  28.  
  29. </script>
  30.  
  31. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement