Skip to content

Instantly share code, notes, and snippets.

@stutya
Last active August 29, 2015 14:15
Show Gist options
  • Save stutya/9044a3a9a64383dc5fa2 to your computer and use it in GitHub Desktop.
Save stutya/9044a3a9a64383dc5fa2 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;
}
#core_drawer_panel {
position: absolute;
top: 400px;
right: 0px;
bottom: 0px;
left: 1190px;
}
#paper_calculator {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
</style>
<paper-calculator 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