Skip to content

Instantly share code, notes, and snippets.

@beatsm
Created July 22, 2014 15:21
Show Gist options
  • Save beatsm/45db8669fd50a15eac5e to your computer and use it in GitHub Desktop.
Save beatsm/45db8669fd50a15eac5e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 50px;
top: 80px;
position: absolute;
}
</style>
<paper-button label="Paper Button" raisedbutton id="paper_button"></paper-button>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment