Skip to content

Instantly share code, notes, and snippets.

@IntranetFactory
Created July 3, 2014 21:33
Show Gist options
  • Select an option

  • Save IntranetFactory/9325f6409a1d378038da to your computer and use it in GitHub Desktop.

Select an option

Save IntranetFactory/9325f6409a1d378038da to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_icon {
height: 24px;
width: 24px;
left: 120px;
top: 90px;
position: absolute;
}
</style>
<core-icon icon="phone" id="core_icon"></core-icon>
</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