Skip to content

Commit 9e2f7bd

Browse files
authored
Merge pull request #679 from hhaccessibility/issue-168
Issue 168
2 parents baf2110 + 9b08329 commit 9e2f7bd

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

app/app/Http/Controllers/PWAController.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public function manifest()
1313
"display" => "fullscreen",
1414
"start_url" => "/?using_pwa=1",
1515
"short_name" => "AccessLocator",
16+
"background_color" => "#e7f3f5",
1617
"theme_color" => "#202767",
1718
"description" => "Your personalized access to the world",
1819
"orientation" => "portrait",
@@ -24,6 +25,11 @@ public function manifest()
2425
"src" => "/images/logo-192x192.png",
2526
"type" => "image/png",
2627
"sizes" => "192x192"
28+
],
29+
[
30+
"src" => "/images/logo-512x512.png",
31+
"type" => "image/png",
32+
"sizes" => "512x512"
2733
]
2834
]
2935
]);

app/public/images/logo-512x512.png

31.5 KB
Loading

app/resources/views/includes/head.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<meta charset="utf-8">
2+
<meta name="theme-color" content="#202767">
23
<meta name="description" content="A service for finding places based on the visitor's personal accessibility needs">
34
<meta name="author" content="JMCC">
45
<meta name="viewport" content="width=device-width, initial-scale=1.0">

0 commit comments

Comments
 (0)