Skip to content

Instantly share code, notes, and snippets.

@GomesNayagam
Created March 10, 2016 20:44
Show Gist options
  • Save GomesNayagam/f94d7ec340fdf89a6e09 to your computer and use it in GitHub Desktop.
Save GomesNayagam/f94d7ec340fdf89a6e09 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.html">
<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>
#paper_input {
left: 380px;
top: 380px;
position: absolute;
}
#core_icon {
left: 530px;
top: 390px;
position: absolute;
}
</style>
<paper-input label="Type something..." id="paper_input"></paper-input>
<core-icon icon="mail" id="core_icon"></core-icon>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment