ig.rizaldy.club/styles/globals.css

23 lines
317 B
CSS
Raw Normal View History

2024-01-31 00:25:25 +07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-02-04 05:44:56 +07:00
body {
background-color: #ffffff;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #000000;
}
}
2024-01-31 00:25:25 +07:00
/* Somehow tailwind doesn't include this??? */
.aspect-photos {
aspect-ratio: 1 / 1;
}
.aspect-videos {
aspect-ratio: 16 / 9;
}