Browse Source

fix: set height for positioned properties

Tienson Qin 1 year ago
parent
commit
32b93c926d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/frontend/components/block.cljs

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

@@ -2426,7 +2426,7 @@
                 (property-component/property-key-cp block property opts)
                 [:div.select-none ":"]]
                (pv/property-value block property v opts)]))]
-         [:div.positioned-properties.right-align.flex.flex-row.gap-2.select-none
+         [:div.positioned-properties.right-align.flex.flex-row.gap-2.select-none.h-6
           (for [pid properties]
             (when-let [property (db/entity pid)]
               (pv/property-value block property (get block pid) (assoc opts :show-tooltip? true))))]))))