Created
October 15, 2014 17:23
-
-
Save tommymorgan/2d5adebfee037cf6093c to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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