Skip to content

Commit

Permalink
Deleting unused css
Browse files Browse the repository at this point in the history
  • Loading branch information
erickhilda committed Nov 6, 2019
1 parent a47ebfc commit 381c45d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/AppNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<img class="h-10" src="/img/ghibli-text.png" alt="Workcation">
</div>
<div class="sm:hidden">
<button @click="isOpen = !isOpen" type="button" class="block text-gray-500 hover:text-white focus:text-white focus:outline-none">
<button aria-label="menu-burger" @click="isOpen = !isOpen" type="button" class="block text-gray-500 focus:text-white focus:outline-none">
<svg class="h-6 w-6 fill-current" viewBox="0 0 24 24">
<path v-if="isOpen" fill-rule="evenodd" d="M18.278 16.864a1 1 0 0 1-1.414 1.414l-4.829-4.828-4.828 4.828a1 1 0 0 1-1.414-1.414l4.828-4.829-4.828-4.828a1 1 0 0 1 1.414-1.414l4.829 4.828 4.828-4.828a1 1 0 1 1 1.414 1.414l-4.828 4.829 4.828 4.828z"/>
<path v-if="!isOpen" fill-rule="evenodd" d="M4 5h16a1 1 0 0 1 0 2H4a1 1 0 1 1 0-2zm0 6h16a1 1 0 0 1 0 2H4a1 1 0 0 1 0-2zm0 6h16a1 1 0 0 1 0 2H4a1 1 0 0 1 0-2z"/>
Expand Down
4 changes: 2 additions & 2 deletions src/views/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
</div>
<div class="flex flex-wrap">
<button
class="text-xs font-semibold rounded-full px-4 py-1 mx-3 leading-normal bg-white border border-blue text-blue hover:bg-blue hover:text-white"
class="text-xs font-semibold rounded-full px-4 py-1 mx-3 leading-normal bg-white border focus:outline-none"
>Call</button>
<button
class="text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border border-purple text-purple hover:bg-purple hover:text-white"
class="text-xs font-semibold rounded-full px-4 py-1 leading-normal bg-white border focus:outline-none"
>Message</button>
</div>
</div>
Expand Down

0 comments on commit 381c45d

Please sign in to comment.