Skip to content

Instantly share code, notes, and snippets.

@sachinhub
Created April 8, 2017 08:06
Show Gist options
  • Save sachinhub/ee6ce624ccd58740e887fc8a3130f2e2 to your computer and use it in GitHub Desktop.
Save sachinhub/ee6ce624ccd58740e887fc8a3130f2e2 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_input {
left: 270px;
top: 90px;
position: absolute;
}
</style>
<paper-input label="name" id="paper_input"></paper-input>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment