From 2a313ae3b7d16077f4fac81c86cbb40756faa2f6 Mon Sep 17 00:00:00 2001 From: PJ-Watson <59647390+PJ-Watson@users.noreply.github.com> Date: Wed, 21 Jul 2021 13:42:25 +0100 Subject: [PATCH] Patch fix for face images Patches up the x offset for face circle images on the people page, where the Tailwind base style overrides the existing layout. --- ui/src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/src/index.css b/ui/src/index.css index c4f665d..37adde1 100644 --- a/ui/src/index.css +++ b/ui/src/index.css @@ -21,3 +21,9 @@ html { transform: scale(1, -1); } } + +@layer base { + img { + max-width: revert; + } +}