forked from Collaborne/paper-chip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 729 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh"/>
<title>Paper-Chip</title>
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
<script type="module" src="/node_modules/@polymer/iron-component-page/iron-component-page.js"></script>
<custom-style id="app">
<style is="custom-style">
:host,
html {
--iron-component-page-header-color: #00fe70;
/**
* workaround
*/
--paper-pink-600: #00fe70;
}
</style>
</custom-style>
</head>
<body>
<iron-component-page></iron-component-page>
</body>
</html>