1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-25 11:11:24 +00:00
Files
.vscode
assets
components
auth
cart
checkout
CheckoutSidebarView
PaymentMethodView
PaymentMethodView.module.css
PaymentMethodView.tsx
index.ts
PaymentWidget
ShippingView
ShippingWidget
common
icons
product
ui
wishlist
config
framework
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
commerce/components/checkout/PaymentMethodView/PaymentMethodView.module.css
2021-06-05 16:20:02 -03:00

18 lines
327 B
CSS

.fieldset {
@apply flex flex-col my-3;
}
.fieldset .label {
@apply text-accent-7 uppercase text-xs font-medium mb-2;
}
.fieldset .input,
.fieldset .select {
@apply p-2 border border-accent-2 w-full text-sm font-normal;
}
.fieldset .input:focus,
.fieldset .select:focus {
@apply outline-none shadow-outline-normal;
}