13 lines
193 B
CSS
13 lines
193 B
CSS
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
/* Somehow tailwind doesn't include this??? */
|
||
|
.aspect-photos {
|
||
|
aspect-ratio: 1 / 1;
|
||
|
}
|
||
|
|
||
|
.aspect-videos {
|
||
|
aspect-ratio: 16 / 9;
|
||
|
}
|