fix(ribbon): book properties overlapping

This commit is contained in:
Elian Doran
2025-09-12 18:20:17 +03:00
parent ff422d112b
commit f537852469
2 changed files with 10 additions and 15 deletions

View File

@@ -56,7 +56,7 @@ function CollectionTypeSwitcher({ viewType, setViewType }: { viewType: string, s
function BookProperties({ viewType, note, properties }: { viewType: ViewTypeOptions, note: FNote, properties: BookProperty[] }) {
return (
<div className="book-properties-container">
<>
{properties.map(property => (
<div className={`type-${property}`}>
{mapPropertyView({ note, property })}
@@ -72,7 +72,7 @@ function BookProperties({ viewType, note, properties }: { viewType: ViewTypeOpti
}}
/>
)}
</div>
</>
)
}