chore: bulk commit of local changes across blog writer, SEO dashboard, scheduler, docs-site, and frontend

This commit is contained in:
ajaysi
2026-06-05 12:40:04 +05:30
parent b894bc0abb
commit e54aaa7a3e
74 changed files with 5667 additions and 996 deletions

View File

@@ -76,7 +76,12 @@ const TitleSelector: React.FC<TitleSelectorProps> = ({
{selectedTitle === title && (
<span style={{ color: '#1976d2', fontSize: '16px' }}></span>
)}
<span style={{ fontWeight: selectedTitle === title ? '600' : '400' }}>
<span style={{
fontWeight: selectedTitle === title ? '600' : '400',
wordBreak: 'break-word',
overflowWrap: 'break-word',
whiteSpace: 'normal'
}}>
{title}
</span>
</div>