mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
fix opacity
This commit is contained in:
parent
c889acadc0
commit
2eafda9132
1 changed files with 2 additions and 2 deletions
|
|
@ -286,7 +286,7 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
const gridLayout = <div className="flex flex-col gap-1">
|
||||
{/* First row */}
|
||||
{filesDescription &&
|
||||
<div className={`flex items-center ${leftRightDisabled ? 'text-opacity-50' : ''}`}>
|
||||
<div className={`flex items-center ${leftRightDisabled ? 'opacity-50' : ''}`}>
|
||||
{leftButton}
|
||||
<div className="w-px h-3 bg-void-border-3 mx-0.5 shadow-sm"></div> {/* Divider */}
|
||||
{rightButton}
|
||||
|
|
@ -297,7 +297,7 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
|
|||
|
||||
{/* Second row */}
|
||||
{changesDescription &&
|
||||
<div className={`flex items-center ${upDownDisabled ? 'text-opacity-50' : ''}`}>
|
||||
<div className={`flex items-center ${upDownDisabled ? 'opacity-50' : ''}`}>
|
||||
{upButton}
|
||||
<div className="w-px h-3 bg-void-border-3 mx-0.5 shadow-sm"></div> {/* Divider */}
|
||||
{downButton}
|
||||
|
|
|
|||
Loading…
Reference in a new issue