fix window bar position on mobile layout

This commit is contained in:
jeffvli
2025-12-14 06:40:33 -08:00
parent 3f32e6cd2f
commit 48bba76c74
4 changed files with 37 additions and 6 deletions
+2 -2
View File
@@ -198,7 +198,7 @@ export const WindowBar = () => {
}
return (
<>
<div className={styles.windowBar}>
{windowBarStyle === Platform.WINDOWS && (
<WindowsControls
controls={{ handleClose, handleMaximize, handleMinimize }}
@@ -211,6 +211,6 @@ export const WindowBar = () => {
title={title}
/>
)}
</>
</div>
);
};