@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! ⚡
51 lines (42 loc) • 714 B
CSS
.card {
display: flex;
flex-direction: column;
gap: var(--ac-space-4);
border: 1px solid var(--ac-border);
border-radius: var(--ac-radius-lg);
padding: var(--ac-space-6);
}
.header {
display: flex;
flex-direction: column;
gap: var(--ac-space-2);
}
.title {
width: 60%;
height: 1.25rem;
}
.subtitle {
width: 40%;
height: 0.875rem;
}
.content {
display: flex;
flex-direction: column;
gap: var(--ac-space-2);
}
.line {
width: 100%;
height: 0.875rem;
}
.lineShort {
width: 75%;
}
.footer {
display: flex;
justify-content: flex-end;
}
.button {
width: 6rem;
height: 2.25rem;
border-radius: var(--ac-radius-md);
}