@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! ⚡
33 lines (28 loc) • 738 B
CSS
.textarea-hdUZWB {
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);
min-height: 3.75rem;
padding: var(--ac-space-2) var(--ac-space-3);
resize: vertical;
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;
}
}
/*# sourceMappingURL=textarea_module.css.map */