prevent zoom on mobile

This commit is contained in:
Sam 2024-10-28 14:17:18 -04:00
parent 26d5976b0f
commit e3cace6eb8

View File

@ -127,7 +127,7 @@ pub fn head_html(title: Option<&str>, config: &Config) -> Markup {
html! {
head {
meta charset="UTF-8";
meta name="viewport" content="width=device-width, initial-scale=1.0";
meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1";
title {
@if let Some(title) = title {
{ (title) }