mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
28 lines
391 B
CSS
28 lines
391 B
CSS
#message-input {
|
|
margin-right: 30px;
|
|
height: 64px;
|
|
}
|
|
|
|
#message-input::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
#message-input::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
|
|
#message-input::-webkit-scrollbar-thumb {
|
|
background: #c7a2ff;
|
|
}
|
|
|
|
#message-input::-webkit-scrollbar-thumb:hover {
|
|
background: #8b3dff;
|
|
}
|
|
|
|
@media screen and (max-width: 360px) {
|
|
#message-input {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|