delete chats

This commit is contained in:
YasinOnm08 2024-10-10 10:37:02 +02:00
parent 939cdd4497
commit a1c0bf1294
4 changed files with 99 additions and 12 deletions

View file

@ -21,14 +21,40 @@
padding: 10px 0;
border-bottom: 1px solid var(--text-color);
width: 100%;
height: fit-content;
display: flex;
justify-content: flex-start;
align-items: center;
overflow: hidden;
}
.history ul li a{
display: block;
word-break: break-word;
overflow-wrap: break-word;
display: inline-block;
text-decoration: none;
color: var(--text-color); /* Use variable for link text color */
width: 100%;
padding: 5px;
}
#delete-chat-button{
width: 0;
height: 80%;
visibility: hidden;
border-radius: 5px;
background-color: var(--close-button-color);
transition: all 0.2s ease-in-out;
}
#delete-chat-button svg{
width: 100%;
padding: 3px;
}
#delete-chat-button:hover{
background-color: var(--close-button-hover-color);
}
.history ul li a:hover{
background-color: var(--input-button-hover-color);
}