Revert "Add focus state for stars"

This reverts commit 28888f59d1.
This commit is contained in:
Oliver Davies 2018-12-25 20:06:52 +00:00
parent 7e27d64896
commit 40bf223d57

View file

@ -13,8 +13,8 @@
</div>
<div class="ml-2">
<button type="button" @click="starred = !starred" class="text-orange focus:text-blue-dark focus:outline-none">
<svg class="h-6 w-6 fill-current" role="presentation"><use :xlink:href="`/img/icons.symbol.svg#state__${starred ? 'starred' : 'unstarred'}`"></use></svg>
<button type="button" @click="starred = !starred" class="focus:outline-none">
<svg class="h-6 w-6 text-orange fill-current" role="presentation"><use :xlink:href="`/img/icons.symbol.svg#state__${starred ? 'starred' : 'unstarred'}`"></use></svg>
</button>
</div>
</div>
@ -38,8 +38,8 @@
</div>
<div class="mr-3">
<button type="button" @click="starred = !starred" class="text-orange focus:text-blue-dark focus:outline-none">
<svg class="h-6 w-6 fill-current" role="presentation"><use :xlink:href="`/img/icons.symbol.svg#state__${starred ? 'starred' : 'unstarred'}`"></use></svg>
<button type="button" @click="starred = !starred" class="focus:outline-none">
<svg class="h-6 w-6 text-orange fill-current" role="presentation"><use :xlink:href="`/img/icons.symbol.svg#state__${starred ? 'starred' : 'unstarred'}`"></use></svg>
</button>
</div>
</div>