Skip to content

Instantly share code, notes, and snippets.

@clayrisser
Last active January 24, 2016 11:26
Show Gist options
  • Save clayrisser/aed9d75b31ed9cd8a1e1 to your computer and use it in GitHub Desktop.
Save clayrisser/aed9d75b31ed9cd8a1e1 to your computer and use it in GitHub Desktop.
designer
<link href="../paper-calculator/paper-calculator.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_calculator {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
</style>
<paper-calculator widemode responsivewidth="2000px" id="paper_calculator"></paper-calculator>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment