diff --git a/src/renderer/components/layout/topbar.module.css b/src/renderer/components/layout/topbar.module.css index 2715931a31..9dd6da2bc8 100644 --- a/src/renderer/components/layout/topbar.module.css +++ b/src/renderer/components/layout/topbar.module.css @@ -30,8 +30,22 @@ grid-area: topbar; } -:global(.is-mac) .topBar { - padding-left: var(--hotbar-width); +.winMenu { + width: var(--hotbar-width); + + > div { + @apply flex items-center justify-center; + width: 40px; + height: 40px; + + &:hover { + background-color: var(--borderFaintColor); + } + + &:active { + background-color: var(--borderColor); + } + } } .tools { diff --git a/src/renderer/components/layout/topbar.tsx b/src/renderer/components/layout/topbar.tsx index cb0c3c2458..fe64438b74 100644 --- a/src/renderer/components/layout/topbar.tsx +++ b/src/renderer/components/layout/topbar.tsx @@ -105,12 +105,11 @@ export const TopBar = observer(({ children, ...rest }: Props) => { return (