Logo white

SGH / COMPONENTS

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • COMPONENTS
  • bower_components
  • polymer-element-catalog
  • app
  • elements
  • app-sidebar
  • app-sidebar.html
  • paper card update
    1f76071f
    Luigi Serra authored
    2015-12-11 15:29:36 +0100  
    Browse Code ยป
app-sidebar.html 394 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<style is="custom-style">
  :root {
    --app-sidebar-width: 272px;
    --app-sidebar-background: var(--primary-background-color);
  }
</style>

<dom-module id="app-sidebar">
  <link rel="import" type="css" href="app-sidebar.css">
  <template>
    <content></content>
  </template>
</dom-module>

<script>
  Polymer({
    is: 'app-sidebar',
    enableCustomStyleProperties: true
  });
</script>