Skip to content

Instantly share code, notes, and snippets.

@robertonic
Last active February 19, 2016 16:28
Show Gist options
  • Save robertonic/672b21f9c3443b88bd64 to your computer and use it in GitHub Desktop.
Save robertonic/672b21f9c3443b88bd64 to your computer and use it in GitHub Desktop.
designer
<link href="../core-icon-button/core-icon-button.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_icon_button {
left: 650px;
top: 420px;
position: absolute;
}
</style>
<core-icon-button id="core_icon_button" theme="core-light-theme">q</core-icon-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment