Files
Reactive-Resume/client/components/shared/ListItem.module.scss
Amruth Pillai 9c1380f401 🚀 release v3.0.0
2022-03-06 22:48:29 +01:00

19 lines
343 B
SCSS

.item {
@apply flex items-center justify-between;
@apply py-5 pl-5 pr-2;
@apply border-b border-neutral-900/10 last:border-0 dark:border-neutral-50/10;
@apply cursor-move transition-opacity;
.meta {
@apply grid gap-1;
.title {
@apply font-semibold;
}
.subtitle {
@apply text-xs opacity-50;
}
}
}