feat: Mobile PWA improvements

- Implemented responsive card layout for mobile devices
- Fixed Android bottom navigation bar color matching
- Improved mobile context menu (iOS/Android touch fixes)
- Cleaned up toolbar and updated theme icon
This commit is contained in:
spinline
2026-02-01 15:24:06 +03:00
parent 4286c8f3e3
commit 8064d6ae74
6 changed files with 73 additions and 53 deletions

View File

@@ -1211,6 +1211,9 @@
.z-\[1\] {
z-index: 1;
}
.z-\[99\] {
z-index: 99;
}
.z-\[100\] {
z-index: 100;
}
@@ -1673,6 +1676,9 @@
.transform {
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.cursor-default {
cursor: default;
}
.cursor-pointer {
cursor: pointer;
}
@@ -1685,6 +1691,9 @@
.flex-col {
flex-direction: column;
}
.content-start {
align-content: flex-start;
}
.items-center {
align-items: center;
}