Spaces:
Running
Running
File size: 2,049 Bytes
0bb4279 f6b99ca 0bb4279 f6b99ca 0bb4279 f6b99ca 0bb4279 f6b99ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
:root {
--color-grey-50: #f9fafb;
}
.toast-body {
background-color: var(--color-grey-50);
}
.html-container:has(.css-styles) {
padding: 0;
margin: 0;
}
.css-styles {
height: 0;
}
.model-message {
text-align: end;
}
.model-dropdown-container {
display: flex;
align-items: center;
gap: 10px;
padding: 0;
}
.chatbot {
max-height: 1400px;
}
button.cancel {
border: var(--button-border-width) solid var(--button-cancel-border-color);
background: var(--button-cancel-background-fill);
color: var(--button-cancel-text-color);
box-shadow: var(--button-cancel-shadow);
}
button.cancel:hover, .cancel[disabled] {
background: var(--button-cancel-background-fill-hover);
color: var(--button-cancel-text-color-hover);
}
.opt-out-message {
top: 8px;
}
.opt-out-message .html-container, .opt-out-checkbox label {
font-size: 14px !important;
padding: 0 !important;
margin: 0 !important;
color: var(--neutral-400) !important;
}
@media (max-width: 800px) {
.responsive-row {
flex-direction: column;
}
.model-message {
text-align: start;
font-size: 10px !important;
}
.model-dropdown-container {
flex-direction: column;
align-items: flex-start;
}
.chatbot {
max-height: 800px;
}
}
@media (max-width: 400px) {
.responsive-row {
flex-direction: column;
}
.model-message {
text-align: start;
font-size: 10px !important;
}
.model-dropdown-container {
flex-direction: column;
align-items: flex-start;
}
.chatbot {
max-height: 360px;
}
}
@media (max-width: 1280px) {
.chatbot {
max-height: 900px;
}
}
@media (max-height: 932px) {
.chatbot {
max-height: calc(100dvh - 400px);
}
}
@media (max-height: 1280px) {
.chatbot {
max-height: calc(100dvh - 400px);
}
}
@media (min-height: 1281px) {
.chatbot {
/*max-height: calc(100dvh - 400px);*/
}
} |