fix ui make spacing between player controls smaller (#2032)
This commit is contained in:
parent
ad5d9302db
commit
8c773ab529
3 changed files with 3 additions and 3 deletions
|
|
@ -169,7 +169,7 @@ function Controls(props: any) {
|
|||
currentInterval={skipInterval}
|
||||
startedAt={session.startedAt}
|
||||
/>
|
||||
<div className={cn('mx-2')} />
|
||||
<div className={cn('mx-1')} />
|
||||
</div>
|
||||
|
||||
<div className="flex gap-2 items-center h-full">
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ function PlayerControls(props: Props) {
|
|||
sessionTz={sessionTz}
|
||||
/>
|
||||
|
||||
<div className="rounded ml-2 bg-white border-gray-lighter flex items-center" style={{ gap: 1 }}>
|
||||
<div className="rounded ml-1 bg-white border-gray-lighter flex items-center" style={{ gap: 1 }}>
|
||||
<JumpBack backTenSeconds={backTenSeconds} currentInterval={currentInterval} />
|
||||
<IntervalSelector
|
||||
skipIntervals={skipIntervals}
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ function PlayingTime({ timeMode, setTimeMode, startedAt, sessionTz }: Props) {
|
|||
</div>
|
||||
)}
|
||||
>
|
||||
<Button type={'text'}>
|
||||
<Button type={'text'} style={{ padding: '4px 0.5rem'}}>
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<div
|
||||
className="flex items-center font-semibold text-center"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue