merge fix

This commit is contained in:
cristhianzl 2024-03-15 15:58:47 -03:00
commit a51dd38561
2 changed files with 7 additions and 7 deletions

View file

@ -542,7 +542,7 @@ export default function NodeToolbarComponent({
{navigator.userAgent.toUpperCase().includes("MAC") ? (
<IconComponent
name="Command"
className="absolute right-[1.15rem] top-[0.65em] h-3.5 w-3.5 stroke-2"
className="absolute right-[1.25rem] top-[0.65em] h-3.5 w-3.5 stroke-2"
></IconComponent>
) : (
<span className="absolute right-[1.30rem] top-[0.40em] stroke-2">

View file

@ -20,15 +20,15 @@ export default function ToolbarSelectItem({
{isMac ? (
<ForwardedIconComponent
name="Command"
className={`absolute right-[${
shift ? "2rem" : "1.15rem"
}] top-[0.65em] h-3.5 w-3.5 stroke-2 ${styleObj?.commandClasses}`}
className={`absolute
${shift ? " right-[2rem] " : "right-[1.15rem]"}
top-[0.65em] h-3.5 w-3.5 stroke-2 ${styleObj?.commandClasses}`}
></ForwardedIconComponent>
) : (
<span
className={`absolute right-[${
shift ? "2.10rem" : "1.15rem"
}] top-[0.43em] stroke-2 ${styleObj?.ctrlClasses}`}
className={`absolute ${
shift ? " right-[2.15rem] " : "right-[1.15rem]"
} top-[0.43em] stroke-2 `}
>
{shift ? "Ctrl" : "Ctrl +"}
</span>