56 lines
885 B
CSS
56 lines
885 B
CSS
#readme-button {
|
|
display: none !important;
|
|
}
|
|
|
|
.text-xs {
|
|
display: none !important;
|
|
}
|
|
|
|
.rounded-3xl{
|
|
border-radius: 0.9rem !important;
|
|
}
|
|
|
|
#chat-submit {
|
|
border-radius: 0.5rem !important;
|
|
}
|
|
|
|
#starters {
|
|
order: 1 !important;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
|
|
#starters button {
|
|
height: auto !important;
|
|
white-space: normal !important;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
#starters button img {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
#starters p {
|
|
white-space: normal !important;
|
|
overflow: visible !important;
|
|
text-overflow: unset !important;
|
|
}
|
|
|
|
#welcome-screen {
|
|
position: relative;
|
|
}
|
|
|
|
#message-composer {
|
|
order: 2 !important;
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
align-items: center !important;
|
|
gap: 8px !important;
|
|
min-height: 1rem;
|
|
}
|