Skip to content

Commit

Permalink
fixed slider and button spacing (#454)
Browse files Browse the repository at this point in the history
* fixed slider and button spacing

* Run Prettier

---------

Co-authored-by: Stanley Zheng <[email protected]>
Co-authored-by: szheng31 <[email protected]>
Co-authored-by: Isaac  Liu <[email protected]>
  • Loading branch information
4 people authored Apr 5, 2024
1 parent d5aabaa commit 472ff1f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions components/Organizer/ScheduleTab/ScheduleTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,13 @@ const ScheduleTab = () => {
/>
</Col>
<Col span={4}>
<Slider min={1} max={10} onChange={setTimesJudged} value={timesJudged} />
<Slider
min={1}
max={10}
onChange={setTimesJudged}
value={timesJudged}
style={{ marginLeft: '20px' }}
/>
</Col>
</Row>
<br />
Expand All @@ -135,7 +141,7 @@ const ScheduleTab = () => {
{potentialSchedule && (
<Button
onClick={() => handleConfirmPotentialSchedules(potentialSchedule)}
style={{ marginBottom: '10px' }}>
style={{ marginBottom: '10px', marginLeft: '10px' }}>
Confirm Schedule
</Button>
)}
Expand Down

0 comments on commit 472ff1f

Please sign in to comment.