Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use zurb foundation 4 large layout for print

How can i get my > 768px layout to work for printing? I seems to fallback to a mobile layout. I'm using the fix https://github.com/zurb/foundation/issues/1285 Any help would be highly appreciated. Thnx.

like image 813
Soupoclap Avatar asked Apr 08 '13 09:04

Soupoclap


1 Answers

Just after @import "settings"; in app.scss add:

$small: "print, screen and (min-width:"#{$small-screen}")";

This seems to work.

like image 52
Soupoclap Avatar answered Oct 31 '22 21:10

Soupoclap