fix(ui): avoid break-inside for filter columns
This commit is contained in:
parent
4e7d146220
commit
00f96ca6ed
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ function FilterModal(props: Props) {
|
|||
>
|
||||
{matchingCategories.map((key) => {
|
||||
return (
|
||||
<div className="mb-6 flex flex-col gap-2" key={key}>
|
||||
<div className="mb-6 flex flex-col gap-2 break-inside-avoid" key={key}>
|
||||
<div className="uppercase font-medium mb-1 color-gray-medium tracking-widest text-sm">
|
||||
{key}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue