Skip to content

Commit 9b08329

Browse files
committed
app: attempted to fix theme-color item from PWA audit
A message about the theme-color not being specified was mentioned in a Chrome audit of PWA functionality. Related to #168
1 parent c91565b commit 9b08329

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

app/app/Http/Controllers/PWAController.php

Lines changed: 1 addition & 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",

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)