ns77@siliconpin.com 2025-09-03 14:32:28 +00:00
parent cb73f1fdd7
commit 4516d7aad8
1 changed files with 9 additions and 4 deletions

View File

@ -5,13 +5,13 @@
font-family: Arial, sans-serif;
overflow-y: auto;
/* ✅ space for bottom nav */
padding-bottom: 70px; /* nav height (55px) + extra gap */
/* ✅ Keep content above bottom nav */
padding-bottom: calc(55px + 25px); /* nav height + safe gap */
}
.agent-bottom-nav {
position: fixed;
bottom: 0;
bottom: 25px; /* ✅ keep above phone navigation bar */
left: 0;
right: 0;
height: 55px;
@ -21,6 +21,11 @@
align-items: center;
border-top: 1px solid rgba(255,255,255,0.2);
z-index: 999;
/* Optional floating style */
border-radius: 12px;
margin: 0 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.agent-bottom-link {
@ -38,7 +43,7 @@
}
.agent-bottom-link.active {
background: rgba(255,255,255,0.2);
border-radius: 5px;
border-radius: 8px;
}
</style>