mirror of
https://github.com/vercel/commerce.git
synced 2025-08-16 05:41:24 +00:00
.vscode
framework
packages
site
assets
components
auth
cart
checkout
common
icons
product
ui
Button
Collapse
Container
Grid
Hero
Input
Link
LoadingDots
Logo
Marquee
Modal
Quantity
Quantity.module.css
Quantity.tsx
index.ts
Rating
Sidebar
Skeleton
Text
README.md
context.tsx
index.ts
wishlist
search.tsx
config
lib
pages
public
.env.template
.gitignore
codegen.bigcommerce.json
codegen.json
commerce-config.js
commerce.config.json
global.d.ts
next-env.d.ts
next.config.js
package.json
postcss.config.js
swell-js.d.ts
tailwind.config.js
tsconfig.json
.editorconfig
.eslintrc
.gitignore
.prettierignore
.prettierrc
README.md
license.md
package-copy.json
package-lock.json
package.json
28 lines
595 B
CSS
28 lines
595 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;
|
|
}
|
|
|
|
.actions:disabled {
|
|
@apply cursor-not-allowed;
|
|
}
|
|
|
|
.input {
|
|
@apply bg-transparent px-4 w-full h-full focus:outline-none select-none pointer-events-auto;
|
|
}
|