diff --git a/ui/autoMate/src/main/index.ts b/ui/autoMate/src/main/index.ts index 3ea684b..b06de76 100644 --- a/ui/autoMate/src/main/index.ts +++ b/ui/autoMate/src/main/index.ts @@ -10,10 +10,10 @@ function createWindow(): void { width: 600, height: 600, x: width - 600, - y: 0, + y: 50, show: false, transparent: true, - // alwaysOnTop: true, + alwaysOnTop: true, autoHideMenuBar: true, ...(process.platform === 'linux' ? { icon } : {}), webPreferences: { @@ -22,7 +22,7 @@ function createWindow(): void { } }) - // mainWindow.webContents.openDevTools() + mainWindow.webContents.openDevTools() mainWindow.on('ready-to-show', () => { mainWindow.show() }) diff --git a/ui/autoMate/src/renderer/src/assets/global.scss b/ui/autoMate/src/renderer/src/assets/global.scss index 63ef0ae..49238e5 100644 --- a/ui/autoMate/src/renderer/src/assets/global.scss +++ b/ui/autoMate/src/renderer/src/assets/global.scss @@ -1,3 +1,4 @@ body{ - // @apply bg-green-50; -} \ No newline at end of file + // @apply bg-slate-50; +} + diff --git a/ui/autoMate/src/renderer/src/components/Search/index.tsx b/ui/autoMate/src/renderer/src/components/Search/index.tsx index 1535656..95a290a 100644 --- a/ui/autoMate/src/renderer/src/components/Search/index.tsx +++ b/ui/autoMate/src/renderer/src/components/Search/index.tsx @@ -1,8 +1,8 @@ export default function Search(): JSX.Element { return ( -
-
- +
+
+
)