Skip to content

Commit

Permalink
Add more applike css
Browse files Browse the repository at this point in the history
  • Loading branch information
patdx committed Jan 6, 2025
1 parent 8e7794a commit ba4e977
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 24 deletions.
13 changes: 11 additions & 2 deletions app/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@ body,
touch-action: pan-x pan-y;
}

/* https://forums.developer.apple.com/forums/thread/133399 */
html {
-webkit-user-select: none;
-webkit-touch-callout: none;
-webkit-touch-callout: none; /* Safari Touch */
-webkit-user-select: none; /* Webkit */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Edge*/
user-select: none; /* Future-proof*/

-webkit-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}

html {
Expand Down
38 changes: 19 additions & 19 deletions public/webmanifest.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"short_name": "Subtitle",
"name": "Subtitle App",
"start_url": "/",
"background_color": "#000000",
"display": "standalone",
"scope": "/",
"theme_color": "#000000",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
"short_name": "Subtitle",
"name": "Subtitle App",
"start_url": "/",
"background_color": "#000000",
"display": "standalone",
"scope": "/",
"theme_color": "#000000",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
4 changes: 1 addition & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>patdx/renovate-config"
]
"extends": ["local>patdx/renovate-config"]
}

0 comments on commit ba4e977

Please sign in to comment.