mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-22 23:53:08 +00:00
refactor: Improve all git operations, add stash support, add improved pull request flow, add worktree file copy options, address code review comments, add cherry pick options
This commit is contained in:
@@ -396,30 +396,19 @@
|
||||
|
||||
/* iOS Safari: position:fixed on body prevents pull-to-refresh and overscroll bounce.
|
||||
Scoped to touch devices only to avoid breaking desktop browser behaviours. */
|
||||
`@media` (hover: none) and (pointer: coarse) {
|
||||
@media (hover: none) and (pointer: coarse) {
|
||||
html,
|
||||
body {
|
||||
position: fixed;
|
||||
}
|
||||
}
|
||||
|
||||
/* App container: full viewport, no scroll, safe-area insets for notched devices */
|
||||
#app {
|
||||
height: 100%;
|
||||
height: 100dvh;
|
||||
overflow: hidden;
|
||||
overscroll-behavior: none;
|
||||
}
|
||||
|
||||
/* Prevent pull-to-refresh and rubber-band scrolling on mobile */
|
||||
@supports (-webkit-touch-callout: none) {
|
||||
body {
|
||||
/* iOS Safari specific: prevent overscroll bounce */
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Safe area insets for devices with notches/home indicators (viewport-fit=cover) */
|
||||
#app {
|
||||
padding-top: env(safe-area-inset-top, 0px);
|
||||
padding-bottom: env(safe-area-inset-bottom, 0px);
|
||||
padding-left: env(safe-area-inset-left, 0px);
|
||||
@@ -559,6 +548,11 @@
|
||||
@apply backdrop-blur-md border-white/10;
|
||||
}
|
||||
|
||||
/* Disable iOS long-press context menu - apply only to non-interactive chrome elements */
|
||||
.no-touch-callout {
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
|
||||
.glass-subtle {
|
||||
@apply backdrop-blur-sm border-white/5;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user