Skip to content

Instantly share code, notes, and snippets.

@richardfrk
Last active August 29, 2015 14:10
Show Gist options
  • Save richardfrk/9c961e10586351139c53 to your computer and use it in GitHub Desktop.
Save richardfrk/9c961e10586351139c53 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../paper-input/paper-input.html">
<polymer-element name="my-element">
<template>
<style>
#paper_tab {
width: 120px;
height: 40px;
left: 440px;
top: 190px;
position: absolute;
}
#paper_input {
left: 450px;
top: 280px;
position: absolute;
}
</style>
<paper-tab id="paper_tab" inline flex center-center horizontal layout>TAB</paper-tab>
<paper-input label="Type something..." 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