pages/index: margin for laptop-hd

This commit is contained in:
vchikalkin 2022-07-12 11:03:01 +03:00
parent b03609c114
commit a3fe3a5621
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
const screens = {
tablet: 768,
laptop: 1024,
'laptop-hd': 1280,
desktop: 1680,
'desktop-xl': 1921,
};

View File

@ -29,8 +29,11 @@ const Grid = styled(Box)`
grid-template-columns: 2fr 1fr;
}
${min('desktop')} {
${min('laptop-hd')} {
grid-template-columns: 2fr 1fr 1.5fr;
}
${min('desktop')} {
margin: 8px 5%;
}