Skip to content

Instantly share code, notes, and snippets.

@paralin
Created August 19, 2014 17:55
Show Gist options
  • Save paralin/6cce997cff0614937f13 to your computer and use it in GitHub Desktop.
Save paralin/6cce997cff0614937f13 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../smoothie-chart/smoothie-chart.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#google_map {
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0px;
left: 0px;
}
#smoothie_chart {
left: 390px;
top: 560px;
position: absolute;
}
</style>
<smoothie-chart id="smoothie_chart"></smoothie-chart>
</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