UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

20 lines 546 B
import { c, cB, cM, cNotM } from "../../../_utils/cssr/index.mjs"; // --n-input-width // --n-gap export default c([cB('input-otp', ` display: flex; align-items: center; gap: var(--n-gap); `, [cM('block', ``, [cB('input', ``, [cNotM('autosize', ` text-align: center; min-width: 0; `), cM('autosize', ` text-align: center; min-width: 0; `)])]), cNotM('block', ``, [cB('input', ``, [cNotM('autosize', ` width: var(--n-input-width); text-align: center; `), cM('autosize', ` width: var(--n-input-width); text-align: center; `)])])])]);