This commit is contained in:
Belen Curcio
2020-10-14 19:36:59 -03:00
parent 74b14ef2a4
commit 8f90757eda
7 changed files with 40 additions and 17 deletions

View File

@@ -27,7 +27,7 @@ const Avatar: FC<Props> = ({}) => {
return (
<div
className="inline-block h-8 w-8 rounded-full border border-accent-8"
className="inline-block h-8 w-8 rounded-full border-2 border-accents-2"
style={{
backgroundImage: `linear-gradient(140deg, ${bg[0]}, ${bg[1]} 100%)`,
}}

View File

@@ -1,5 +1,5 @@
.input {
@apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg placeholder-accent-4 pr-10;
@apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg placeholder-accents-4 pr-10;
min-width: 300px;
}