Made webpage scale better on phones

This commit is contained in:
2020-05-30 17:22:05 +02:00
parent 1646443b65
commit 8f9b2594fb

View File

@@ -39,8 +39,12 @@ void initWebserver()
{ {
HtmlTag headTag{"head", content}; HtmlTag headTag{"head", content};
HtmlTag titleTag{"title", content}; {
content += "Bobbycar remote"; HtmlTag titleTag{"title", content};
content += "Bobbycar remote";
}
content += "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\" />";
} }
{ {