29 lines
487 B
CSS
29 lines
487 B
CSS
#ai-chat {
|
|
width: 460px !important;
|
|
right: 20px !important;
|
|
left: auto !important;
|
|
}
|
|
|
|
@media (max-width: 520px) {
|
|
#ai-chat {
|
|
width: calc(100vw - 16px) !important;
|
|
right: 8px !important;
|
|
left: 8px !important;
|
|
bottom: 12px !important;
|
|
height: 75vh !important;
|
|
max-height: 580px !important;
|
|
}
|
|
|
|
#ai-chat a {
|
|
word-break: break-all !important;
|
|
}
|
|
|
|
#ai-messages {
|
|
padding: 10px !important;
|
|
}
|
|
|
|
#ai-input {
|
|
font-size: 16px !important;
|
|
}
|
|
}
|