Merge branch 'staging' of https://github.com/buster-so/buster into staging

This commit is contained in:
Nate Kelley 2025-08-21 22:26:26 -06:00
commit 25162bac0e
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ export function HrElement(props: PlateElementProps) {
<div className="py-6" contentEditable={false}>
<hr
className={cn(
'bg-muted h-0.5 rounded-sm border-none bg-clip-content',
'border-border border-0 border-t',
selected && focused && 'ring-ring ring-2 ring-offset-2',
!readOnly && 'cursor-pointer'
)}

View File

@ -10,7 +10,7 @@ export function HrElementStatic(props: SlateElementProps) {
return (
<SlateElement {...props}>
<div className="cursor-text py-6" contentEditable={false}>
<hr className={cn('bg-muted h-0.5 rounded-sm border-none bg-clip-content')} />
<hr className={cn('border-border border-0 border-t')} />
</div>
{props.children}
</SlateElement>