Skip to content

Commit b73a4f9

Browse files
committed
fix: 브레이크 포인트 재수정
1 parent 1665512 commit b73a4f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/shared/model/use-device.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState, useEffect } from "react";
22
const RESIZE_DEBOUNCE_MS = 100;
33
const screen = {
4-
mobile: 425,
4+
mobile: 452,
55
} as const;
66

77
const useDevice = () => {

src/shared/styles/tokens/screen.css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { CSSProperties } from "react";
33
export const screen = {
44
mobile: (css: CSSProperties) => ({
55
"@media": {
6-
"(max-width: 425px)": css,
6+
"(max-width: 452px)": css,
77
},
88
}),
99
} as const;

0 commit comments

Comments
 (0)