Skip to content

Instantly share code, notes, and snippets.

@christophediprima
Created July 24, 2014 06:59
Show Gist options
  • Save christophediprima/04d881aca89b4553ab98 to your computer and use it in GitHub Desktop.
Save christophediprima/04d881aca89b4553ab98 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-menu/core-submenu.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_menu {
font-size: 16px;
left: 700px;
top: 390px;
position: absolute;
}
</style>
<core-menu selected="0" id="core_menu">
</core-menu>
</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