Adjust label style for page info and section info

This commit is contained in:
chrox
2024-10-28 15:13:50 +01:00
parent 08e2d05985
commit 572a97febe
2 changed files with 3 additions and 6 deletions
@@ -6,11 +6,8 @@ interface SectionInfoProps {
const SectionInfo: React.FC<SectionInfoProps> = ({ chapter }) => {
return (
<div className='pageinfo absolute left-[4%] right-0 top-0 flex h-9 items-end'>
<h2
className='text-center font-sans font-extralight text-slate-500'
style={{ fontSize: '10px' }}
>
<div className='pageinfo absolute left-[4%] right-0 top-0 flex h-8 items-end'>
<h2 className='text-center font-sans font-light text-slate-500' style={{ fontSize: '10px' }}>
{chapter || ''}
</h2>
</div>