Код: Выделить всё
@tailwind base;
@tailwind components;
@tailwind utilities;
Код: Выделить всё
@layer utilities {
.will-change-transform {
will-change: transform;
}
}
Код: Выделить всё
@layer utilities {
.ease {
transition: ease;
}
}
Код: Выделить всё
.my-component {
@apply block hover:scale-110 w-full ease will-change-transform
}
Подробнее здесь: https://stackoverflow.com/questions/702 ... -css-class