Chat Widget, changes in nav bar

Auto Scroll chat and changes in Nav bar
This commit is contained in:
Nikitha
2026-04-15 08:12:16 -06:00
parent c5c5461167
commit 8e1ab89e6c
6 changed files with 106 additions and 31 deletions

View File

@@ -36,7 +36,7 @@ body {
padding: 0.5rem 2rem;
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
min-height: 70px;
/* border-radius: 0px 0px 10px 10px; */
}
@@ -71,17 +71,18 @@ body {
.nav-link {
color: #2f2f2f;
text-decoration: none;
font-size: 1.1rem;
font-weight: 700;
font-size: 1.05rem;
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: all 0.3s ease;
border-radius: 6px;
transition: background-color 0.25s ease, color 0.25s ease;
position: relative;
}
/* Alternative Hover Effect - Background */
.nav-link:hover {
background-color: rgba(255, 255, 255, 0.171);
background-color: rgba(255, 255, 255, 0.25);
}