Skip to content

Commit

Permalink
[desk-tool] Fix margins type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuslundgard authored and rexxars committed Oct 6, 2020
1 parent 36bd525 commit 32c4e8e
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export const DEFAULT_MARGINS = [0, 0, 1, 0]
type Margins = [number, number, number, number]

export const MARGINS_NARROW_SCREEN_WITH_TABS = [74, 0, 64, 0]
export const MARGINS_NARROW_SCREEN_WITHOUT_TABS = [53, 0, 64, 0]
export const DEFAULT_MARGINS: Margins = [0, 0, 1, 0]

export const MARGINS_NARROW_SCREEN_WITH_TABS: Margins = [74, 0, 64, 0]
export const MARGINS_NARROW_SCREEN_WITHOUT_TABS: Margins = [53, 0, 64, 0]

0 comments on commit 32c4e8e

Please sign in to comment.