23 lines
317 B
CSS
23 lines
317 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #000000;
|
|
}
|
|
}
|
|
|
|
/* Somehow tailwind doesn't include this??? */
|
|
.aspect-photos {
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
|
|
.aspect-videos {
|
|
aspect-ratio: 16 / 9;
|
|
}
|