Skip to content

Instantly share code, notes, and snippets.

@willmitchell
Last active August 29, 2015 14:02
Show Gist options
  • Save willmitchell/7773198ecdc0dd7d27e0 to your computer and use it in GitHub Desktop.
Save willmitchell/7773198ecdc0dd7d27e0 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>
#section {
left: 760px;
top: 310px;
position: absolute;
}
#paper_input {
left: 370px;
top: 150px;
position: absolute;
}
</style>
<section id="section">
<paper-input label="Description..." maxrows="5" willvalidate autofocus id="desc_input" layout vertical></paper-input>
<paper-input label="Address..." willvalidate id="paper_input" layout vertical></paper-input>
</section>
</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