Skip to content

Instantly share code, notes, and snippets.

@Connoropolous
Created July 2, 2014 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Connoropolous/6e62199f31d632f9a8d8 to your computer and use it in GitHub Desktop.
Save Connoropolous/6e62199f31d632f9a8d8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_icon_button {
left: 250px;
top: 120px;
position: absolute;
}
#paper_icon_button1 {
left: 360px;
top: 120px;
position: absolute;
}
</style>
<paper-icon-button icon="check" id="paper_icon_button"></paper-icon-button>
<paper-icon-button icon="close" id="paper_icon_button1"></paper-icon-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