Skip to content

Commit

Permalink
feat: Turn on page scaling. Temporary solution for mobile devices. (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bigismall authored Feb 22, 2024
2 parents facf6bf + f8c84fa commit 88b4919
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Map on photo - add map thumbnail to your photo!</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 minimum-scale=0.25 ma maximum-scale=1 user-scalable=1" />
<meta name="author" content="Slavo" />
<meta name="theme-color" content="#2c3e50">
<meta name="description"
Expand Down
3 changes: 2 additions & 1 deletion src/styles/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ body {
font-weight: 400;
color: $text;

background-color: $blue;
background-color: $light-blue;
background-image: linear-gradient(
to bottom,
$blue,
Expand All @@ -25,6 +25,7 @@ body {
#505f6e,
$light-blue
);
background-repeat: repeat-x;

-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: $transparent;
Expand Down

0 comments on commit 88b4919

Please sign in to comment.