diff --git a/components/AiAssist.vue b/components/AiAssist.vue
index e052780b..79884885 100644
--- a/components/AiAssist.vue
+++ b/components/AiAssist.vue
@@ -1,13 +1,34 @@
-
-
+
+

+
+
+
+
+
+
+
@@ -15,6 +36,23 @@ export default {
.AiAssist {
.avatar-text {
text-align: center;
+ color: white;
+ }
+
+ :deep(.assistDialog) {
+ .border-box-content {
+ padding: 8px 10px;
+ width: initial;
+ }
+
+ .inbox {
+ min-width: 400px;
+ box-shadow: 4px 4px 10px #23ECFD inset, -4px -4px 10px #23ECFD inset;
+ height: 100%;
+ $v: 14px;
+ $vv: calc(100% - #{$v});
+ clip-path: polygon($v 0, $vv 0, 100% $v, 100% $vv, $vv 100%, $v 100%, 0 $vv, 0 $v);
+ }
}
}
diff --git a/ui/lib/styles/common.scss b/ui/lib/styles/common.scss
index 0047d587..b283e2f3 100644
--- a/ui/lib/styles/common.scss
+++ b/ui/lib/styles/common.scss
@@ -734,3 +734,7 @@ h1, h2, h3, p {
margin-left: 50%;
transform: translateX(-50%);
}
+
+.pointer {
+ cursor: pointer;
+}