Skip to content

Commit

Permalink
ux: [des] bug fix: unclickable region on the top bar
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz committed Feb 7, 2022
1 parent a6ef445 commit d290fa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/screens/desktop-frame/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const styles = StyleSheet.create({
zIndex: 1000,
top: 0,
right: 0,
width: `calc(100vw - ${Dimensions.desktopMiddleWidth.px} - ${Dimensions.desktopSideWidth.px})`,
width: `calc(min(100vw - ${Dimensions.desktopMiddleWidth.px} - ${Dimensions.desktopSideWidth.px}, (100vw - ${Dimensions.desktopMiddleWidth.px}) * 0.5))`,
height: Dimensions.toolbarHeight,
minHeight: Dimensions.toolbarHeight,
maxHeight: Dimensions.toolbarHeight,
Expand Down

0 comments on commit d290fa8

Please sign in to comment.