Skip to content

Instantly share code, notes, and snippets.

@schrepfler
Created December 6, 2014 00:05
Show Gist options
  • Save schrepfler/fce0f9756d72c0b88ca5 to your computer and use it in GitHub Desktop.
Save schrepfler/fce0f9756d72c0b88ca5 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#paper_tab {
width: 120px;
height: 40px;
left: 810px;
top: 210px;
position: absolute;
}
</style>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment