Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
valpackett committed May 15, 2017
1 parent 7733941 commit 2adf939
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Brocfile.js
Expand Up @@ -20,7 +20,7 @@ root = new Merge([
new Funnel('./bower_components/web-animations-js', { include: ['*.min.js'], destDir: 'bower_components/web-animations-js' }),
new Funnel('./bower_components/fetch', { include: ['*.js'], destDir: 'bower_components/fetch' }),
new Funnel('./bower_components/freezer-js/build', { include: ['*.js'], destDir: 'bower_components/freezer-js/build' }),
new Funnel('.', { include: [ 'index.html', 'manifest.json' ] }),
new Funnel('.', { include: [ 'index.html', 'manifest.json', 'icons' ] }),
])

module.exports = root
Binary file added icons/apple-touch-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/big-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/favicon-32x32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions icons/mask-icon.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions icons/micro-panel.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion index.html
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>micropanel</title>
<title>micro-panel</title>
<style>
body { margin: 0; padding: 0; }
body, micro-panel { height: 100vh; }
Expand All @@ -19,6 +19,11 @@
<script defer src="bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<link rel="import" href="src/micro-panel.html">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
<link rel="mask-icon" href="icons/mask-icon.svg" color="#5bbad5">
<link rel="icon" type="image/x-icon" href="icons/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
<meta name="theme-color" content="#00897b">
</head>
<body>
<div class="p0lyfake p0lyfake-toolbar"></div>
Expand Down
9 changes: 8 additions & 1 deletion manifest.json
Expand Up @@ -3,5 +3,12 @@
"short_name": "μ-panel",
"display": "browser",
"orientation": "portrait-primary",
"theme_color": "#00897b"
"theme_color": "#00897b",
"icons": [
{
"src": "icons/big-icon.png",
"sizes": "512x512",
"type": "image/png"
}
]
}

0 comments on commit 2adf939

Please sign in to comment.