瀏覽代碼

fix: scroll overflow of absolute modal

charlie 5 年之前
父節點
當前提交
67e268ef8f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/frontend/components/editor.cljs

+ 1 - 1
src/main/frontend/components/editor.cljs

@@ -320,7 +320,7 @@
         to-max-height (if (and (seq rect) (> vw-height max-height))
                         (let [delta-height (- vw-height (+ (:top rect) top offset-top))]
                           (if (< delta-height max-height)
-                            delta-height
+                            (- (max (* 2 offset-top) delta-height) 16)
                             max-height))
                         max-height)
         x-overflow? (if (and (seq rect) (> vw-width max-width))