Skip to content

Instantly share code, notes, and snippets.

@anthonykeane
Created July 9, 2015 08:13
Show Gist options
  • Save anthonykeane/808c1795cb5d6cf19c7f to your computer and use it in GitHub Desktop.
Save anthonykeane/808c1795cb5d6cf19c7f to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-toggle-button/paper-toggle-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_toggle_button {
left: 130px;
top: 40px;
position: absolute;
}
</style>
<paper-toggle-button id="paper_toggle_button" touch-action="pan-y"></paper-toggle-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment