feat: update passwords tool UI, fix layout issues, and set PWA theme color

This commit is contained in:
2026-02-27 00:31:26 +00:00
parent 7c4f1b20b3
commit c8a009dda1
6 changed files with 196 additions and 40 deletions

View File

@@ -1,3 +1,8 @@
/* Box sizing reset */
*, *::before, *::after {
box-sizing: border-box;
}
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
@@ -86,6 +91,14 @@ body {
min-width: 320px;
min-height: 100vh;
overflow-x: hidden;
user-select: none;
-webkit-user-select: none;
}
.selectable {
user-select: text;
-webkit-user-select: text;
cursor: text;
}
#app {