Skip to content

Instantly share code, notes, and snippets.

@Drewfore
Created November 19, 2014 04:46
Show Gist options
  • Save Drewfore/6121afe426be3d242fa6 to your computer and use it in GitHub Desktop.
Save Drewfore/6121afe426be3d242fa6 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: -10px;
right: 0px;
bottom: 0px;
left: -260px;
width: 100%;
height: 100%;
}
</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