style: customize scrollbar

This commit is contained in:
sushant dhimal 2023-01-05 22:14:12 +05:45
parent d30ab6a40a
commit 0825807cc8
1 changed files with 30 additions and 0 deletions

View File

@ -100,6 +100,35 @@ nav svg {
color: #d1d5db;
font-size: 16px;
}
.chatLogWrapper {
height: 80vh;
overflow-y: auto;
}
/* adding custom scrollbar */
::-webkit-scrollbar {
width: 8px;
background-color: #575969;
}
::-webkit-scrollbar-thumb {
background-clip: content-box;
border-color: transparent;
border-style: solid;
border-width: 1px 2px;
background-color: rgb(243, 241, 241);
}
::-moz-scrollbar {
width: 8px;
background-color: #575969;
}
::-moz-scrollbar-thumb {
background-clip: content-box;
border-color: transparent;
border-style: solid;
border-width: 1px 2px;
background-color: rgb(243, 241, 241);
}
.chatPromptWrapper {
max-width: 800px;
@ -111,6 +140,7 @@ nav svg {
align-items: center;
column-gap: 25px;
}
.userSVG {
transform: scale(0.6);
}