Skip to content

Commit

Permalink
Merge pull request #103 from DSM-Repo/refactor
Browse files Browse the repository at this point in the history
fix: overflow fix
  • Loading branch information
six-standard authored Oct 13, 2024
2 parents e0befad + 1de3911 commit e74e361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/util-config/src/utils/checkOverflow.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// 마진을 태그로 구분하여 삽입
const MARGIN = { SPAN: 24, DIV: 10 };
const MAXHEIGHT = 1050;
const MAXHEIGHT = 1060;

export const checkOverflow = (item: HTMLElement) => {
let queue = [item];
Expand Down

0 comments on commit e74e361

Please sign in to comment.