@arolariu/components
Version:
🎨 70+ beautiful, accessible React components built on Base UI. TypeScript-first, CSS Modules styling, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
40 lines (34 loc) • 866 B
CSS
.input-KhGasQ {
border: 1px solid var(--ac-input);
border-radius: var(--ac-radius-md);
box-sizing: border-box;
color: var(--ac-foreground);
font-size: var(--ac-text-sm);
height: var(--ac-size-default);
padding: var(--ac-space-1) var(--ac-space-3);
transition: border-color var(--ac-transition-fast),box-shadow var(--ac-transition-fast);
background-color: #0000;
outline: none;
width: 100%;
line-height: 1.5;
display: flex;
&::placeholder {
color: var(--ac-muted-foreground);
}
&:focus-visible {
border-color: var(--ac-ring);
box-shadow: 0 0 0 1px var(--ac-ring);
}
&:disabled {
cursor: not-allowed;
opacity: .5;
}
&[type="file"] {
font-size: var(--ac-text-sm);
background-color: #0000;
border: none;
padding: 0;
font-weight: 500;
}
}
/*# sourceMappingURL=input_module.css.map */