Skip to content

Instantly share code, notes, and snippets.

@jsphkhan
Last active August 29, 2015 14:10
Show Gist options
  • Save jsphkhan/c61daffd5b5de2168b11 to your computer and use it in GitHub Desktop.
Save jsphkhan/c61daffd5b5de2168b11 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../yodlee-component/timely-challenge.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#bills1 {
left: 350px;
top: 140px;
position: absolute;
width: 500px;
height: 220px;
}
#timely_challenge {
left: 390px;
top: 390px;
position: absolute;
}
</style>
<bills-due-list tabletitle="BILLS DUE" id="bills1" class="timely-list"></bills-due-list>
<timely-challenge challenge="Try to spend less than $20 today." tabletitle="CHALLENGES" id="timely_challenge" class="timely-list">
</timely-challenge>
</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