Skip to content

Commit

Permalink
fix(TD-3364): resolve accessibility issues and achieve 100% score in …
Browse files Browse the repository at this point in the history
…Lighthouse audit (#499)

Fix accessibility issues and achieve 100% score in Lighthouse audit

- Removed `user-scalable="no"` from the viewport meta tag for better zoom accessibility.
  • Loading branch information
Nabute authored Dec 18, 2024
1 parent ca2b65a commit 9ae313d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/layouts/master.twig
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ theme.settings.set('placeholder', 'images/placeholder.png') }}

{% include 'pages.partials.loading-screen-assets' %}
Expand Down

0 comments on commit 9ae313d

Please sign in to comment.