20 lines
344 B
CSS
20 lines
344 B
CSS
![]() |
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
|
||
|
@layer utilities {
|
||
|
.perspective-1000 {
|
||
|
perspective: 1000px;
|
||
|
}
|
||
|
.backface-hidden {
|
||
|
backface-visibility: hidden;
|
||
|
}
|
||
|
.transform-style-preserve-3d {
|
||
|
transform-style: preserve-3d;
|
||
|
}
|
||
|
.rotate-y-180 {
|
||
|
transform: rotateY(180deg);
|
||
|
}
|
||
|
}
|
||
|
|