mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
23 lines
529 B
CSS
23 lines
529 B
CSS
.actions {
|
|
@apply flex p-1 border-accent-2 border items-center justify-center w-12 text-accent-7;
|
|
transition-property: border-color, background, color, transform, box-shadow;
|
|
transition-duration: 0.15s;
|
|
transition-timing-function: ease;
|
|
user-select: none;
|
|
}
|
|
|
|
.actions:hover {
|
|
@apply border bg-accent-1 border-accent-3 text-accent-9;
|
|
transition: border-color;
|
|
z-index: 10;
|
|
}
|
|
|
|
.actions:focus {
|
|
@apply outline-none;
|
|
}
|
|
|
|
.input {
|
|
@apply bg-transparent px-4 w-full h-full focus:outline-none;
|
|
user-select: none;
|
|
}
|