pianello-api/resources/css/components/_zoom-in.css
Ale Gallo 74c4b1d3f4 Committing laraver (part 2)
committing part of the laravel system with templating files and components
2023-11-10 15:58:25 +01:00

14 lines
401 B
CSS

@layer components {
.zoom-in {
transition-property: transform, box-shadow;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
transition-duration: 300ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
&:hover {
transform: scale(theme("scale.105"));
box-shadow: theme("boxShadow.xl");
}
}
}