Skip to content

Commit

Permalink
Increase spacing between checkboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-bauer committed Jul 15, 2024
1 parent aba6b72 commit 89bdb91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export default function Home() {

<fieldset>
<legend className='sr-only'>Credit roles</legend>
<div className='flex items-start space-x-1'>
<div className='flex items-start space-x-2'>
{numContributorsIdx.map((id) => (
<p
key={'lbl-cbk-' + id}
Expand All @@ -160,7 +160,7 @@ export default function Home() {
<div className='space-y-3'>
{Object.entries(allCreditRoles).map(([key, role]) => (
<div key={key} className='relative flex items-start'>
<div className='flex h-6 items-center space-x-1'>
<div className='flex h-6 items-center space-x-2'>
{numContributorsIdx.map((authId) => (
<input
id={key + '-' + authId}
Expand Down

0 comments on commit 89bdb91

Please sign in to comment.