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