Skip to content

Commit

Permalink
add favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
mvaneijgen committed Jan 23, 2024
1 parent 6a1af02 commit 1399000
Show file tree
Hide file tree
Showing 14 changed files with 70 additions and 2 deletions.
3 changes: 3 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ ul li {
justify-content: center;
align-items: center;
flex-grow: 1;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}

aside {
Expand Down
2 changes: 1 addition & 1 deletion assets/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ ul {
justify-content: center;
align-items: center;
flex-grow: 1;
user-select: none;
}

aside {
Expand Down
Binary file added assets/favicon/android-chrome-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions assets/favicon/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#0094ff</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added assets/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon/favicon.ico
Binary file not shown.
Binary file added assets/favicon/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions assets/favicon/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions assets/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "WLED Draw Something",
"short_name": "WLED Draw Something",
"icons": [
{
"src": "/android-chrome-144x144.png",
"sizes": "144x144",
"type": "image/png"
}
],
"theme_color": "#0094ff",
"background_color": "#0094ff",
"display": "standalone"
}
14 changes: 13 additions & 1 deletion dist/drawsomething.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,9 @@
justify-content: center;
align-items: center;
flex-grow: 1;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}

aside {
Expand Down Expand Up @@ -611,6 +614,14 @@
max-width: 100%;
width: 240px;
}/*# sourceMappingURL=style.css.map */</style>

<link rel="apple-touch-icon" sizes="152x152" href="./assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon/site.webmanifest">
<link rel="mask-icon" href="./assets/favicon/safari-pinned-tab.svg" color="#0094ff">
<meta name="msapplication-TileColor" content="#0094ff">
<meta name="theme-color" content="#0094ff">
</head>
<body>
<div id="app">
Expand Down Expand Up @@ -644,7 +655,7 @@ <h3>Version {{version}}</h3>

<!-- <button @click="post">Send mannualy🚀</button> -->
<div class="alloy-input-group">
<button class @click="clear">Clear sreen</button>
<button class @click="clear">Clear screen</button>
</div>

<!-- Advanced settings -->
Expand Down Expand Up @@ -716,6 +727,7 @@ <h3>We could not fetch your settings at <i>{{url}}</i></h3>
</div>
<!-- END Notifications -->
<div class="view" @mousedown="mouseDown" @mouseup="mouseUp"
@touchstart="mouseDown" @mouseup="touchend"
v-if="!loading">
<svg :view-box.camel="viewBox">
<g v-for="(item, yIndex) in y">
Expand Down
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
<meta charset="UTF-8">
<title>WLED Draw Something</title>
<link rel="stylesheet" href="./assets/css/style.css" inline>

<link rel="apple-touch-icon" sizes="152x152" href="./assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon/site.webmanifest">
<link rel="mask-icon" href="./assets/favicon/safari-pinned-tab.svg" color="#0094ff">
<meta name="msapplication-TileColor" content="#0094ff">
<meta name="theme-color" content="#0094ff">
</head>
<body>
<div id="app">
Expand Down

0 comments on commit 1399000

Please sign in to comment.