mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
small
This commit is contained in:
parent
09d7e7f3e6
commit
25c12b101f
1 changed files with 8 additions and 8 deletions
|
|
@ -138,7 +138,7 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
|
||||
const upButton = <button
|
||||
className={`
|
||||
size-6 rounded cursor-default
|
||||
size-2 rounded cursor-default
|
||||
hover:bg-void-bg-1-alt
|
||||
`}// --border border-void-border-3 focus:border-void-border-1
|
||||
disabled={upDownDisabled}
|
||||
|
|
@ -149,11 +149,11 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
goToDiffIdx(prevDiffIdx);
|
||||
}
|
||||
}}
|
||||
><MoveUp /></button>
|
||||
><MoveUp className='size-2' /></button>
|
||||
|
||||
const downButton = <button
|
||||
className={`
|
||||
size-6 rounded cursor-default
|
||||
size-2 rounded cursor-default
|
||||
hover:bg-void-bg-1-alt
|
||||
`}
|
||||
disabled={upDownDisabled}
|
||||
|
|
@ -164,11 +164,11 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
goToDiffIdx(nextDiffIdx);
|
||||
}
|
||||
}}
|
||||
><MoveDown /></button>
|
||||
><MoveDown className='size-2' /></button>
|
||||
|
||||
const leftButton = <button
|
||||
className={`
|
||||
size-6 rounded cursor-default
|
||||
size-2 rounded cursor-default
|
||||
hover:bg-void-bg-1-alt
|
||||
`}
|
||||
disabled={leftRightDisabled}
|
||||
|
|
@ -179,11 +179,11 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
goToURIIdx(prevURIIdx);
|
||||
}
|
||||
}}
|
||||
><MoveLeft /></button>
|
||||
><MoveLeft className='size-2' /></button>
|
||||
|
||||
const rightButton = <button
|
||||
className={`
|
||||
size-6 rounded cursor-default
|
||||
size-2 rounded cursor-default
|
||||
hover:bg-void-bg-1-alt
|
||||
`}
|
||||
disabled={leftRightDisabled}
|
||||
|
|
@ -194,7 +194,7 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
goToURIIdx(nextURIIdx);
|
||||
}
|
||||
}}
|
||||
><MoveRight /></button>
|
||||
><MoveRight className='size-2' /></button>
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue