瀏覽代碼

诗词课:调整写诗评价输入框遮挡

liyanbo 1 月之前
父節點
當前提交
8f12e1eacb
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/components/aiCourse/dialog/dialogType/WriteReadingDialogue.vue

+ 5 - 0
src/components/aiCourse/dialog/dialogType/WriteReadingDialogue.vue

@@ -25,5 +25,10 @@ defineEmits(['submit']);
   flex-direction: column;
   align-items: center;
   width: 100%;
+
+  // PoemDisplay 的卷轴层级为 5,输入卡片必须位于其上方才能接收点击事件。
+  :deep(.user-input-card) {
+    z-index: 6;
+  }
 }
 </style>