Skip to content

Instantly share code, notes, and snippets.

@Hendrixer
Created June 26, 2014 18:53
Show Gist options
  • Save Hendrixer/e4b4b7b81829aedb89ed to your computer and use it in GitHub Desktop.
Save Hendrixer/e4b4b7b81829aedb89ed to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-progress/paper-progress.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_progress {
left: 290px;
top: 200px;
position: absolute;
}
</style>
<paper-progress id="paper_progress"></paper-progress>
</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