Skip to content

Commit

Permalink
refactor: change coolGray with blueGray
Browse files Browse the repository at this point in the history
  • Loading branch information
einazare committed Mar 19, 2021
1 parent f7d36d5 commit c284007
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/Dropdowns/UserDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const UserDropdown = () => {
return (
<>
<a
className="text-coolGray-500 block"
className="text-blueGray-500 block"
href="#pablo"
ref={btnDropdownRef}
onClick={(e) => {
Expand All @@ -27,7 +27,7 @@ const UserDropdown = () => {
}}
>
<div className="items-center flex">
<span className="w-12 h-12 text-sm text-white bg-coolGray-200 inline-flex items-center justify-center rounded-full">
<span className="w-12 h-12 text-sm text-white bg-blueGray-200 inline-flex items-center justify-center rounded-full">
<img
alt="..."
className="w-full rounded-full align-middle border-none shadow-lg"
Expand All @@ -46,7 +46,7 @@ const UserDropdown = () => {
<a
href="#pablo"
className={
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
}
onClick={(e) => e.preventDefault()}
>
Expand All @@ -55,7 +55,7 @@ const UserDropdown = () => {
<a
href="#pablo"
className={
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
}
onClick={(e) => e.preventDefault()}
>
Expand All @@ -64,17 +64,17 @@ const UserDropdown = () => {
<a
href="#pablo"
className={
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
}
onClick={(e) => e.preventDefault()}
>
Something else here
</a>
<div className="h-0 my-2 border border-solid border-coolGray-100" />
<div className="h-0 my-2 border border-solid border-blueGray-100" />
<a
href="#pablo"
className={
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
"text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
}
onClick={(e) => e.preventDefault()}
>
Expand Down

0 comments on commit c284007

Please sign in to comment.