Skip to content

Instantly share code, notes, and snippets.

@tommymorgan
Created October 15, 2014 17:23
Show Gist options
  • Save tommymorgan/2d5adebfee037cf6093c to your computer and use it in GitHub Desktop.
Save tommymorgan/2d5adebfee037cf6093c to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="sf-colorswatch" noscript="">
<template>
<style>
.root {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
#div {
display: block;
height: 100%;
width: 100%;
}
</style>
<div id="div" class="root">I have some stuff</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