Magento 2.4 – Change Product Details From Tabs to Accordion On Desktop

Overriding Loads Of Less Css classes no need !

Do you prefer the accordion style product details information section as per the mobile view.

Magento 2.4 change product tabs to accordion

Its probably, a better use of the space available on desktop but I personally prefer the accordion style template to the tabbed view on the product page.

Its actually really simple , no need to override loads of CSS or Less classes simply apply this mixin to your _theme.less file in your theme.

.media-width(@extremum, @break) when (@extremum =”min”) and (@break = @screen__m) {
.product.data.items {
.lib-data-accordion();
}
}