forked from fluidnext/paper-grid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (24 loc) · 816 Bytes
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Paper-grid</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>