Spaces:
Sleeping
Sleeping
Commit ·
041b9be
1
Parent(s): ade4821
Modification css pour téléphone
Browse files- static/css/style.css +77 -3
static/css/style.css
CHANGED
|
@@ -1038,6 +1038,41 @@ h1 {
|
|
| 1038 |
.chat-history {
|
| 1039 |
padding: 1rem;
|
| 1040 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1041 |
.message-content {
|
| 1042 |
padding: 0.8rem 1rem;
|
| 1043 |
}
|
|
@@ -1061,10 +1096,49 @@ h1 {
|
|
| 1061 |
max-width: 90%;
|
| 1062 |
}
|
| 1063 |
.chat-form {
|
| 1064 |
-
padding: 0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1065 |
}
|
| 1066 |
-
|
| 1067 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1068 |
}
|
| 1069 |
.sources-panel {
|
| 1070 |
width: 100%;
|
|
|
|
| 1038 |
.chat-history {
|
| 1039 |
padding: 1rem;
|
| 1040 |
}
|
| 1041 |
+
|
| 1042 |
+
.chat-form {
|
| 1043 |
+
flex-wrap: wrap;
|
| 1044 |
+
gap: 0.6rem;
|
| 1045 |
+
align-items: stretch;
|
| 1046 |
+
}
|
| 1047 |
+
|
| 1048 |
+
.chat-input-container {
|
| 1049 |
+
flex-basis: 100%;
|
| 1050 |
+
}
|
| 1051 |
+
|
| 1052 |
+
.chat-input {
|
| 1053 |
+
padding: 0.85rem 1rem 0.85rem 3.2rem;
|
| 1054 |
+
}
|
| 1055 |
+
|
| 1056 |
+
.cat-walking {
|
| 1057 |
+
left: 10px;
|
| 1058 |
+
width: 28px;
|
| 1059 |
+
height: 28px;
|
| 1060 |
+
}
|
| 1061 |
+
|
| 1062 |
+
.chat-form .mic-button,
|
| 1063 |
+
.chat-form .conversation-button,
|
| 1064 |
+
.chat-form .send-button {
|
| 1065 |
+
margin-left: 0;
|
| 1066 |
+
}
|
| 1067 |
+
|
| 1068 |
+
.chat-form .conversation-button {
|
| 1069 |
+
flex: 1;
|
| 1070 |
+
min-width: 160px;
|
| 1071 |
+
}
|
| 1072 |
+
|
| 1073 |
+
.chat-form .send-button {
|
| 1074 |
+
margin-left: auto;
|
| 1075 |
+
}
|
| 1076 |
.message-content {
|
| 1077 |
padding: 0.8rem 1rem;
|
| 1078 |
}
|
|
|
|
| 1096 |
max-width: 90%;
|
| 1097 |
}
|
| 1098 |
.chat-form {
|
| 1099 |
+
padding: 0.75rem;
|
| 1100 |
+
gap: 0.5rem;
|
| 1101 |
+
}
|
| 1102 |
+
|
| 1103 |
+
.chat-input {
|
| 1104 |
+
font-size: 0.95rem;
|
| 1105 |
+
padding: 0.78rem 0.95rem 0.78rem 2.9rem;
|
| 1106 |
}
|
| 1107 |
+
|
| 1108 |
+
.cat-walking {
|
| 1109 |
+
left: 9px;
|
| 1110 |
+
width: 24px;
|
| 1111 |
+
height: 24px;
|
| 1112 |
+
}
|
| 1113 |
+
|
| 1114 |
+
.chat-form .mic-button {
|
| 1115 |
+
width: 42px;
|
| 1116 |
+
height: 42px;
|
| 1117 |
+
border-radius: 999px;
|
| 1118 |
+
background: var(--hover-color);
|
| 1119 |
+
border: 1px solid var(--border-color);
|
| 1120 |
+
display: flex;
|
| 1121 |
+
align-items: center;
|
| 1122 |
+
justify-content: center;
|
| 1123 |
+
font-size: 1.25rem;
|
| 1124 |
+
}
|
| 1125 |
+
|
| 1126 |
+
.chat-form .conversation-button {
|
| 1127 |
+
flex: 1;
|
| 1128 |
+
min-width: 0;
|
| 1129 |
+
padding: 8px 10px;
|
| 1130 |
+
font-size: 0.95rem;
|
| 1131 |
+
line-height: 1.2;
|
| 1132 |
+
white-space: nowrap;
|
| 1133 |
+
}
|
| 1134 |
+
|
| 1135 |
+
.chat-form .send-button {
|
| 1136 |
+
padding: 0.65rem 0.95rem;
|
| 1137 |
+
min-width: 110px;
|
| 1138 |
+
}
|
| 1139 |
+
|
| 1140 |
+
.chat-form .cat-icon {
|
| 1141 |
+
margin-left: 6px;
|
| 1142 |
}
|
| 1143 |
.sources-panel {
|
| 1144 |
width: 100%;
|