Skip to content

Instantly share code, notes, and snippets.

@gondorle
Last active August 29, 2015 14:16
Show Gist options
  • Save gondorle/440db2f731485f8807b6 to your computer and use it in GitHub Desktop.
Save gondorle/440db2f731485f8807b6 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>
#paper_button {
left: 390px;
top: 180px;
position: absolute;
background-color: rgb(255, 0, 0);
}
</style>
<paper-button id="paper_button">button</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment