Created
August 9, 2025 18:05
-
-
Save smiller171/ead2740cd20ced9f064ce0682342597a to your computer and use it in GitHub Desktop.
Linq Lunch Menu printable month
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media print { | |
global-header, | |
.menu-plan--name, | |
.menu-category--category-name, | |
#printHeader, | |
.print-dotted { | |
display: none !important; | |
} | |
.menu-category--items ~ .menu-category--items { | |
display: none !important; | |
} | |
.menu--cell--middle:has(menu-meal:empty) { | |
/* display: none; */ | |
/* height: 0 !important; */ | |
min-height: 0 !important; | |
} | |
.recipe { | |
/* padding-bottom: 0 !important; */ | |
padding-bottom: var(--linq-spacing-1) !important; | |
} | |
menu-meal, | |
.menu-category--items { | |
break-inside: avoid !important; | |
break-before: avoid !important; | |
font-size: 10px !important; | |
line-height: 10px !important; | |
} | |
.print-menu-title-container, | |
.print-menu-title-container .print-menu-title { | |
font-size: 20px !important; | |
} | |
.menu-container-group { | |
padding: 0 !important; | |
} | |
.menu-container-group ~ *, | |
#menu-page ~ * { | |
display: none !important; | |
margin: none !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment