Skip to content

Instantly share code, notes, and snippets.

@jsphkhan
Last active August 29, 2015 14:10
Show Gist options
  • Save jsphkhan/db63d40942eb98cf2206 to your computer and use it in GitHub Desktop.
Save jsphkhan/db63d40942eb98cf2206 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../yodlee-component/bills-due-list.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#bills1 {
left: 270px;
top: 190px;
position: absolute;
}
</style>
<bills-due-list tabletitle="BILLS DUE" id="bills1" class="timely-list"></bills-due-list>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment