Skip to content

Commit

Permalink
style: change small table from 690 to 840px
Browse files Browse the repository at this point in the history
  • Loading branch information
omg-xtao committed Feb 27, 2024
1 parent 25e1a52 commit 635e705
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2461,7 +2461,8 @@ public static boolean isSmallScreen() {

public static boolean isSmallTablet() {
float minSide = Math.min(displaySize.x, displaySize.y) / density;
return minSide <= 690;
// return minSide <= 690;
return minSide <= 840;
}

public static int getMinTabletSide() {
Expand Down

0 comments on commit 635e705

Please sign in to comment.