Blame view

bower_components/polymer-element-catalog/app/elements/app-sidebar/app-sidebar.html 394 Bytes
07d13c9c   isisadmin   polymer catalog
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>