Having created a responsive site with common breakpoints established in SCSS as mixins, I am now seeking to implement the mobile breakpoint for a single page on desktop view only.
Initially, my plan was to create a 'forced-mobile' class by extending the existing navbar class. This new class would then be added to the navbar specifically for that page, featuring a different breakpoint mixin so that the collapsed mobile menu is displayed for all screen sizes greater than or equal to 1024px.
Is this approach considered the best practice in this scenario? Or perhaps there exists a more concise and efficient technique that can achieve the desired effect of displaying the collapsed mobile navbar solely on that page?