Skip to content

Instantly share code, notes, and snippets.

@mlajtos
Last active August 29, 2015 14:07
Show Gist options
  • Save mlajtos/bebc67a1998cfafc5414 to your computer and use it in GitHub Desktop.
Save mlajtos/bebc67a1998cfafc5414 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../code-mirror/code-mirror.html">
<link rel="import" href="../core-splitter/core-splitter.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#container{
width: 100%;
height: 100%;
}
</style>
<div horizontal layout id="container">
<code-mirror></code-mirror>
<core-splitter direction="left"></core-splitter>
<code-mirror flex></code-mirror>
<core-splitter direction="right"></core-splitter>
<code-mirror></code-mirror>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment