commit 5fa50d39d8a1dfde1a09a40b04fc9e141562a3f9 parent 47c2e74ede4b966cbc542bc7154f7e1d675526aa Author: corndog <cauchyn@firemail.cc> Date: Thu, 21 Mar 2019 00:17:12 -0700 Wrap youtube preview in media query so narrow viewports don't combat the 320px wide image Diffstat:
| M | in/static/style.css | | | 6 | ++++-- |
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/in/static/style.css b/in/static/style.css @@ -84,8 +84,10 @@ img.embed.left { left: 103%; } -button:hover > img.embed { - display: block; +@media (min-width: 680px) { + button:hover > img.embed { + display: block; + } } .nowrap {