Most Changes

This commit is contained in:
Belen Curcio
2020-10-13 14:42:24 -03:00
parent 6978b4d4bb
commit 6010d3e2b7
6 changed files with 8 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
.separator {
@apply mx-3 bg-gray-400;
@apply mx-3 bg-secondary;
width: 1px;
height: 20px;
}

View File

@@ -10,7 +10,7 @@ interface Props {
const Featurebar: FC<Props> = ({ title, description, className }) => {
const rootClassName = cn(
'hidden py-2 px-6 bg-gray-100 text-sm text-gray-600 md:flex flex-row justify-center items-center font-medium',
'hidden py-2 px-6 bg-primary-accent text-primary text-sm text-gray-600 md:flex flex-row justify-center items-center font-medium border-b border-primary-accent',
className
)
return (