Tweaking manifest and updating styles to be more app ish
This commit is contained in:
parent
e90420729d
commit
6927dbac6f
2 changed files with 14 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Status Poster",
|
||||
"short_name": "Status",
|
||||
"name": "Post → status.lol",
|
||||
"short_name": "status.lol",
|
||||
"description": "Post status updates to status.lol",
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
|
|
|
|||
12
style.css
12
style.css
|
|
@ -60,6 +60,15 @@
|
|||
}
|
||||
|
||||
/* ── Reset & base ──────────────────────────────────────────────────────── */
|
||||
* {
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
-webkit-touch-callout: none;
|
||||
transition:
|
||||
background-color 0.15s ease,
|
||||
color 0.15s ease,
|
||||
transform 0.1s ease;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
|
|
@ -70,6 +79,8 @@
|
|||
|
||||
html {
|
||||
height: 100%;
|
||||
user-select: none;
|
||||
touch-action: manipulation;
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
@ -298,6 +309,7 @@ textarea,
|
|||
input[type="url"],
|
||||
input[type="text"],
|
||||
input[type="password"] {
|
||||
user-select: text;
|
||||
background: var(--surface);
|
||||
border: 1.5px solid var(--border);
|
||||
border-radius: var(--r);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue