We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1665512 commit b73a4f9Copy full SHA for b73a4f9
2 files changed
src/shared/model/use-device.ts
@@ -1,7 +1,7 @@
1
import { useState, useEffect } from "react";
2
const RESIZE_DEBOUNCE_MS = 100;
3
const screen = {
4
- mobile: 425,
+ mobile: 452,
5
} as const;
6
7
const useDevice = () => {
src/shared/styles/tokens/screen.css.ts
@@ -3,7 +3,7 @@ import type { CSSProperties } from "react";
export const screen = {
mobile: (css: CSSProperties) => ({
"@media": {
- "(max-width: 425px)": css,
+ "(max-width: 452px)": css,
},
8
}),
9
0 commit comments