1
Fork 0
photoview/ui/src/index.css

40 lines
525 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 {
body.dark,
html.dark {
@apply bg-dark-bg text-dark-text;
}
body.dark *,
html.dark * {
@apply border-dark-border;
}
img {
max-width: revert;
}
}