Use no protocol to fetch Lato font
When using https://example.com, the welcome page design looks off due to fetching the Lato font on http://. Ref: https://github.com/laravel/framework/issues/7159 Better yet, instead of https:// or http://, //
This commit is contained in:
parent
e0c22a6e71
commit
8bf428c193
|
@ -1,6 +1,6 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link href='http://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
|
|
Loading…
Reference in New Issue