Last active
August 29, 2015 14:10
-
-
Save richardfrk/9c961e10586351139c53 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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