@a.izzuddin/ai-chat 0.2.23 → 0.2.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6544,6 +6544,21 @@ exports.AIChat.styles = lit.css`
|
|
|
6544
6544
|
}
|
|
6545
6545
|
}
|
|
6546
6546
|
|
|
6547
|
+
/* Desktop responsive styles - reduce excessive margins on large screens */
|
|
6548
|
+
@media (min-width: 1025px) {
|
|
6549
|
+
.message.user {
|
|
6550
|
+
margin-left: 2rem;
|
|
6551
|
+
}
|
|
6552
|
+
|
|
6553
|
+
.message.assistant {
|
|
6554
|
+
margin-right: 1.5rem;
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
.contact-support-wrapper {
|
|
6558
|
+
margin-left: 1.5rem;
|
|
6559
|
+
}
|
|
6560
|
+
}
|
|
6561
|
+
|
|
6547
6562
|
/* Mobile responsive styles for all modes */
|
|
6548
6563
|
@media (max-width: 768px) {
|
|
6549
6564
|
.contact-support-wrapper {
|
|
@@ -6926,6 +6941,7 @@ exports.AIChat.styles = lit.css`
|
|
|
6926
6941
|
word-wrap: break-word;
|
|
6927
6942
|
min-width: 0;
|
|
6928
6943
|
font-size: 1.2rem;
|
|
6944
|
+
padding: 1rem 1.5rem;
|
|
6929
6945
|
}
|
|
6930
6946
|
|
|
6931
6947
|
.message.user .message-content {
|