Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Xennis/react-notion-render
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2b0e6d454ab5a39fc84af999c6468557b1a03efc
Choose a base ref
..
head repository: Xennis/react-notion-render
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 43b437803a422b8c22c3d778894f13e3e245ec34
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 packages/render/src/components/page-title.tsx
2 changes: 1 addition & 1 deletion packages/render/src/components/page-title.tsx
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ export const PageTitle = ({ icon, children }: { icon: IconResponse; children: Re
<Icon icon={icon} width={20} className="me-1.5 ms-0.5 flex shrink-0 items-center justify-center rounded-[3px]" />
{/* ref: .notion-page-title-text */}
{/* note: In case of links no border is applied, but otherwise it is. See ref above and `.notion-link .notion-page-title-text` */}
<span className="relative top-px overflow-hidden text-ellipsis whitespace-nowrap font-medium leading-[1.3]">
<span className="relative top-px overflow-hidden text-ellipsis whitespace-nowrap leading-[1.3]">
{children}
</span>
</span>