瀏覽代碼

Ensure block label and description are scrollable in previews

Sage Abdullah 2 月之前
父節點
當前提交
476e7aa35c
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      client/src/components/ComboBoxPreview/ComboBoxPreview.scss

+ 6 - 1
client/src/components/ComboBoxPreview/ComboBoxPreview.scss

@@ -32,15 +32,20 @@
 }
 
 .w-combobox-preview__details {
-  overflow: auto;
+  overflow: hidden;
+  display: flex;
+  flex-direction: column;
 }
 
 .w-combobox-preview__label {
   @apply w-label-1;
+  max-height: 25%;
+  overflow: auto;
 }
 
 .w-combobox-preview__description {
   @apply w-help-text;
   margin-top: theme('spacing.3');
   margin-bottom: 0;
+  overflow: auto;
 }