From deffe91fda945ae20191d85740591ac8e9f42916 Mon Sep 17 00:00:00 2001 From: Shyam Sunder Date: Wed, 8 Apr 2020 13:17:38 -0400 Subject: [PATCH] client/css: orient image posts based on EXIF data this uses the optionally implemented "image-orientation: from-image" CSS property, and will not work on every browser. see #311 --- client/css/post-content-control.styl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/css/post-content-control.styl b/client/css/post-content-control.styl index 695895d1..ffa27f8e 100644 --- a/client/css/post-content-control.styl +++ b/client/css/post-content-control.styl @@ -16,3 +16,6 @@ bottom: 0 width: 100% height: 100% + + img + image-orientation: from-image