Add round border, hover color to starter questions in web, desktop apps

This commit is contained in:
Debanjum Singh Solanky
2024-01-20 00:49:22 +05:30
parent 8a488b9e39
commit 7c8c475c3a
2 changed files with 7 additions and 1 deletions

View File

@@ -1015,7 +1015,7 @@
background: var(--background-color);
color: var(--main-text-color);
border: 1px solid var(--main-text-color);
border-radius: 5px;
border-radius: 16px;
padding: 5px;
font-size: 14px;
font-weight: 300;
@@ -1027,6 +1027,9 @@
transition: max-height 0.3s ease-in-out;
overflow: hidden;
}
button.question-starter:hover {
background: var(--primary-hover);
}
code.chat-response {
background: var(--primary-hover);

View File

@@ -823,6 +823,9 @@ To get started, just start typing below. You can also type / to see a list of co
transition: max-height 0.3s ease-in-out;
overflow: hidden;
}
button.question-starter:hover {
background: var(--primary-hover);
}
button.reference-button {
background: var(--background-color);