fadgram-ui
Version:
Fadgram UI is a Tailwind CSS plugin that provides a set of custom utility classes to enhance your web development experience. This plugin is designed to work seamlessly with Tailwind CSS, allowing you to quickly and easily style your web applications. ![F
26 lines (22 loc) • 513 B
CSS
@utility rating-bar-* {
>* {
&.active {
color: --value(--color-*);
@variant dark {
color: --value(--color-*-500);
}
}
}
}
@layer components {
.rating-bar {
@apply inline-flex items-center space-x-1 rtl:space-x-reverse;
@apply text-gray-300 dark:text-gray-300;
@apply fill-current;
>* {
&.active {
@apply text-orange dark:text-orange-500;
}
}
}
}