Skip to content

Commit

Permalink
fix(layout): disable user zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaraa committed Jun 2, 2024
1 parent 9d54e9c commit 4a37c9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/layouts/default.templ
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ templ Default(title string, children ...templ.Component) {
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#4C8C36"/>
<meta name="msapplication-TileColor" content="#4C8C36"/>
<meta name="theme-color" content="#4C8C36"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<meta name="description" content="Create, Share and Play Music Playlists."/>
<meta
name="keywords"
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/raw.templ
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ templ Raw(title string, children ...templ.Component) {
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#4C8C36"/>
<meta name="msapplication-TileColor" content="#4C8C36"/>
<meta name="theme-color" content="#4C8C36"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<meta name="description" content="Create, Share and Play Music Playlists."/>
<meta
name="keywords"
Expand Down

0 comments on commit 4a37c9b

Please sign in to comment.