Skip to content

Commit

Permalink
feat: allow the window to be resized and app to scale
Browse files Browse the repository at this point in the history
The majority of the app supports this already but we need to tweak some other parts.
  • Loading branch information
Alastair Hawkes authored and sekwah41 committed Dec 20, 2022
1 parent 0284583 commit 9bd0128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/renderer/src/styles/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export const GlobalStyles = createGlobalStyle<GlobalTypes>`
font-weight: 400;
color: var(--color-body-text);
width: 340px;
height: max-content;
width: 100%;
height: 100%;
border: ${(p) =>
!p.useNativeTitlebar ? "1px solid var(--color-border-window)" : "none"} ;
box-shadow: ${(p) =>
Expand Down

0 comments on commit 9bd0128

Please sign in to comment.