I am tasked with creating only 2 breakpoints for a specific application. These 2 breakpoints are <=768 for mobile and >=1280 for desktop. (No Tablet breakpoint)
How do I adjust the $grid-breakpoints
to accommodate this setup?
I think it should be done like this:
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1280px
);
where I will only focus on md
, xl
and disregard sm
, md
& lg
?
Any suggestions would be appreciated?