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",
|
"name": "Post → status.lol",
|
||||||
"short_name": "Status",
|
"short_name": "status.lol",
|
||||||
"description": "Post status updates to status.lol",
|
"description": "Post status updates to status.lol",
|
||||||
"start_url": ".",
|
"start_url": ".",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
|
|
|
||||||
12
style.css
12
style.css
|
|
@ -60,6 +60,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ── Reset & base ──────────────────────────────────────────────────────── */
|
/* ── 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,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
|
|
@ -70,6 +79,8 @@
|
||||||
|
|
||||||
html {
|
html {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
user-select: none;
|
||||||
|
touch-action: manipulation;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
@ -298,6 +309,7 @@ textarea,
|
||||||
input[type="url"],
|
input[type="url"],
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="password"] {
|
input[type="password"] {
|
||||||
|
user-select: text;
|
||||||
background: var(--surface);
|
background: var(--surface);
|
||||||
border: 1.5px solid var(--border);
|
border: 1.5px solid var(--border);
|
||||||
border-radius: var(--r);
|
border-radius: var(--r);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue