Skip to content

Commit

Permalink
Give item preview full height space (#717)
Browse files Browse the repository at this point in the history
* Use overflow:visible for components with dropdown
  • Loading branch information
alinekeller committed May 21, 2024
1 parent 83bce32 commit e6a0e9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions reader/reader.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@
overflow: hidden;
}

/* Dropdown needs `overflow: visible` to allow it to
/* Dropdown and multi select needs `overflow: visible` to allow it to
escape its container. */
.tlbx-item-preview.tlbx-component-dropdown {
.tlbx-item-preview.tlbx-element-dropdown,
.tlbx-item-preview.tlbx-element-select-multiple,
.tlbx-item-preview.tlbx-element-breadcrumb-dropdown {
overflow: visible;
}

Expand Down

0 comments on commit e6a0e9d

Please sign in to comment.