Skip to content

Instantly share code, notes, and snippets.

@onemandivision
Last active August 29, 2015 14:12
Show Gist options
  • Save onemandivision/200b72f9f8608e9f7049 to your computer and use it in GitHub Desktop.
Save onemandivision/200b72f9f8608e9f7049 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../core-input/core-input.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_input {
position: absolute;
opacity: 1;
}
</style>
<paper-input label="Type something... paper input" id="paper_input">
<core-input type="password" center vertical layout>
</core-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