Skip to content

Instantly share code, notes, and snippets.

@mikeptweet
Created September 11, 2014 15:50
Show Gist options
  • Save mikeptweet/a88edd7cf6cc784d107e to your computer and use it in GitHub Desktop.
Save mikeptweet/a88edd7cf6cc784d107e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_item {
left: 130px;
top: 50px;
position: absolute;
}
</style>
<core-item id="core_item" icon="settings" label="Item" horizontal center layout></core-item>
</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