Change default md breakpoint
This commit is contained in:
parent
feb4839ccd
commit
df5eba629a
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ export const useContainerQuery = (props?: UseContainerQueryProps) => {
|
|||
|
||||
const isXs = width >= 0;
|
||||
const isSm = width >= (sm || 600);
|
||||
const isMd = width >= (md || 900);
|
||||
const isMd = width >= (md || 768);
|
||||
const isLg = width >= (lg || 1200);
|
||||
const isXl = width >= (xl || 1500);
|
||||
|
||||
|
|
Reference in a new issue