Beautify all CSS

This commit is contained in:
oobabooga 2023-05-25 13:12:34 -03:00
parent 231305d0f5
commit 35009c32f0
9 changed files with 99 additions and 86 deletions

View file

@ -24,7 +24,8 @@
display: none;
}
.message-body {}
.message-body {
}
.message-body p {
font-size: 15px !important;
@ -44,6 +45,7 @@
.message-body code {
overflow-x: auto;
}
.message-body :not(pre) > code {
white-space: normal !important;
}
@ -57,27 +59,27 @@
}
.gradio-container .chat .assistant-message {
padding: 15px;
border-radius: 20px;
background-color: #0000000f;
margin-top: 9px !important;
margin-bottom: 18px !important;
padding: 15px;
border-radius: 20px;
background-color: #0000000f;
margin-top: 9px !important;
margin-bottom: 18px !important;
}
.gradio-container .chat .user-message {
padding: 15px;
border-radius: 20px;
margin-bottom: 9px !important;
padding: 15px;
border-radius: 20px;
margin-bottom: 9px !important;
}
.dark .chat .assistant-message {
background-color: #374151;
background-color: #374151;
}
code {
background-color: white !important;
background-color: white !important;
}
.dark code {
background-color: #1a212f !important;
background-color: #1a212f !important;
}