This commit is contained in:
Mathew Pareles 2025-05-05 01:10:10 -07:00
parent 09d7e7f3e6
commit 25c12b101f

View file

@ -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>