Last active
May 30, 2021 16:33
-
-
Save AprilSylph/bf7d943d1d6f5f4898933671f16ded5d to your computer and use it in GitHub Desktop.
Fix NPF photosets on Tumblr themes
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
.post-content div.npf_row, | |
.post div.npf_row, | |
body div.npf_row { | |
align-items: stretch; | |
} | |
.post-content div.npf_row .npf_col, | |
.post div.npf_row .npf_col, | |
body div.npf_row .npf_col { | |
display: flex; | |
} | |
.post-content div.npf_row .npf_col figure, | |
.post div.npf_row .npf_col figure, | |
body div.npf_row .npf_col figure { | |
padding-bottom: 0; | |
} | |
.post-content div.npf_row .npf_col figure img, | |
.post div.npf_row .npf_col figure img, | |
body div.npf_row .npf_col figure img { | |
position: static; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment