Skip to content

Commit

Permalink
fix(webui): change grid size for sm screens
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Aug 14, 2020
1 parent 48e92c7 commit 18280be
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions komga-webui/src/functions/grid-utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ export function computeCardWidth (width: number, breakpoint: string, cardPadding
switch (breakpoint) {
case 'xs':
return (width - (cardPadding * 2)) / 2
case 'sm':
return (width - (cardPadding * 3)) / 3
default:
return 150
}
Expand Down

0 comments on commit 18280be

Please sign in to comment.