pianello-api/resources/css/components/_zoom-in.css

15 lines
401 B
CSS
Raw Permalink Normal View History

@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");
}
}
}