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

24 lines
336 B
CSS
Raw Normal View History

2021-05-21 12:15:00 +02:00
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root,
body,
html {
/* height: 100%; */
2021-05-21 12:15:00 +02:00
margin: 0;
font-size: inherit;
font-family: 'Source Sans Pro', sans-serif;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
2021-05-23 23:48:13 +02:00
@layer utilities {
.flip-y {
transform: scale(1, -1);
}
}