fix(ui): Mobile notification dropdown renders as bottom sheet
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Notifications dropdown was clipped on mobile phones due to absolute positioning and min-width: 320px. Changed to fixed bottom sheet on screens ≤768px for native-like UX. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
816d4b9782
commit
6af95fc92a
@ -545,6 +545,27 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.notifications-dropdown {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.notifications-menu {
|
||||
position: fixed;
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
min-width: unset;
|
||||
max-width: unset;
|
||||
width: 100%;
|
||||
max-height: 60vh;
|
||||
border-radius: var(--radius) var(--radius) 0 0;
|
||||
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
|
||||
z-index: 1000;
|
||||
}
|
||||
}
|
||||
|
||||
/* ============================================================
|
||||
* BUTTONS
|
||||
* ============================================================ */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user