Skip to content

Instantly share code, notes, and snippets.

@benve
Created July 1, 2014 16:03
Show Gist options
  • Save benve/af0b1056e8de961d9d3d to your computer and use it in GitHub Desktop.
Save benve/af0b1056e8de961d9d3d 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: 470px;
top: 120px;
position: absolute;
width: 140px;
height: 0px;
}
</style>
<paper-button label="Paper Button" 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