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 ccfc472 commit c221db8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/Dropdowns/UserDropdown.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<div>
<a
class="text-coolGray-500 block"
class="text-blueGray-500 block"
href="#pablo"
ref="btnDropdownRef"
v-on:click="toggleDropdown($event)"
>
<div class="items-center flex">
<span
class="w-12 h-12 text-sm text-white bg-coolGray-200 inline-flex items-center justify-center rounded-full"
class="w-12 h-12 text-sm text-white bg-blueGray-200 inline-flex items-center justify-center rounded-full"
>
<img
alt="..."
Expand All @@ -28,26 +28,26 @@
>
<a
href="javascript:void(0);"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
>
Action
</a>
<a
href="javascript:void(0);"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
>
Another action
</a>
<a
href="javascript:void(0);"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
>
Something else here
</a>
<div class="h-0 my-2 border border-solid border-coolGray-100" />
<div class="h-0 my-2 border border-solid border-blueGray-100" />
<a
href="javascript:void(0);"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-coolGray-700"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-blueGray-700"
>
Seprated link
</a>
Expand Down

0 comments on commit c221db8

Please sign in to comment.