@dknight/puff
Version:
Full-featured, lightweight CSS framework that maintained
25 lines (21 loc) • 286 B
CSS
.caret {
align-items: center;
display: inline-flex;
gap: var(--s);
text-decoration: none;
}
.caret::after {
content: '▾';
}
.caret.up::after {
content: '▴';
}
.round {
border-radius: var(--br);
}
.border {
border: var(--brd);
}
.nowrap {
white-space: nowrap;
}