Created
January 30, 2026 23:54
-
-
Save jholloway/e28d026567cc3ba984fd72ff742cf065 to your computer and use it in GitHub Desktop.
fixup
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
| /* We match their exact structure but add 'html body' to out-rank them */ | |
| @media only screen and (min-width: 768px) { | |
| html body .field--name-field-department-components > .field__item:has(#fern__heading) { | |
| margin-bottom: 0 !important; | |
| } | |
| } | |
| /* Also apply it to smaller screens just in case the breakpoint fluctuates */ | |
| @media only screen and (max-width: 767px) { | |
| html body .field--name-field-department-components > .field__item:has(#fern__heading) { | |
| margin-bottom: 0 !important; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment