Skip to content

Instantly share code, notes, and snippets.

@plaflamme
Created July 15, 2014 22:19
Show Gist options
  • Save plaflamme/3deed41c6397aa71ab4b to your computer and use it in GitHub Desktop.
Save plaflamme/3deed41c6397aa71ab4b to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<link rel="import" href="../components/core-layout/core-layout.html">
<polymer-element name="hop-od-select">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
</style>
<core-layout id="core_layout" vertical>
<div id="div">
<img id="img" src="http://hopper.com/favicon.ico"></img>
</div>
<div id="div1" flex>Content</div>
</core-layout>
</template>
<script>
Polymer('hop-od-select', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment