Files
photoview/ui/src/index.css
PJ-Watson 2a313ae3b7 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.
2021-07-21 13:42:25 +01:00

30 lines
388 B
CSS

* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root,
body,
html {
/* height: 100%; */
margin: 0;
font-size: inherit;
font-family: 'Source Sans Pro', sans-serif;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.flip-y {
transform: scale(1, -1);
}
}
@layer base {
img {
max-width: revert;
}
}