Skip to content

Instantly share code, notes, and snippets.

@buy
Last active January 1, 2016 01:45
Show Gist options
  • Save buy/2ec1a1e642e8cf165eae to your computer and use it in GitHub Desktop.
Save buy/2ec1a1e642e8cf165eae to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_scaffold {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
}
</style>
<core-scaffold id="core_scaffold">
<div id="div" tool>Title</div>
</core-scaffold>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment