Merge branch 'fix-list-item-weight' into 'develop'

Fix weight of List Item text

See merge request soapbox-pub/soapbox!2398
This commit is contained in:
Chewbacca
2023-04-03 18:07:20 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ const ListItem: React.FC<IListItem> = ({ label, hint, children, onClick, onSelec
{...linkProps}
>
<div className='flex flex-col py-1.5 pr-4 rtl:pl-4 rtl:pr-0'>
<LabelComp className='font-medium text-gray-900 dark:text-gray-100' htmlFor={domId}>{label}</LabelComp>
<LabelComp className='text-gray-900 dark:text-gray-100' htmlFor={domId}>{label}</LabelComp>
{hint ? (
<span className='text-sm text-gray-700 dark:text-gray-600'>{hint}</span>