cmds-tailwind-styles
Version:
A tailwind preset of utilities for Copa Airlines design system
49 lines (38 loc) • 802 B
CSS
@layer components {
.input-helper {
@apply flex gap-4 items-center text-12-16 text-grey-600;
svg {
@apply square-12;
}
path {
@apply fill-grey-400;
}
&-error {
@apply flex gap-4 items-center text-12-16 text-grey-600;
svg {
@apply square-12;
}
path {
@apply fill-error-main;
}
}
&-warning {
@apply flex gap-4 items-center text-12-16 text-grey-600;
svg {
@apply square-12;
}
path {
@apply fill-warning-main;
}
}
&-success {
@apply flex gap-4 items-center text-12-16 text-grey-600;
svg {
@apply square-12;
}
path {
@apply fill-success-main;
}
}
}
}