Update colours in markup

This commit is contained in:
Oliver Davies 2019-03-10 09:04:53 +00:00
parent 989085fac4
commit fc04267074
18 changed files with 98 additions and 98 deletions

View file

@ -1,5 +1,5 @@
<template>
<div class="w-auto lg:w-56 bg-grey-light text-grey-darker antialiased fixed pin-l h-full overflow-y-scroll">
<div class="w-auto lg:w-56 bg-grey-3 text-grey-6 antialiased fixed pin-l h-full overflow-y-scroll">
<div>
<ul class="list-reset">
<li v-for="link in links" :key="link.title">
@ -7,10 +7,10 @@
href="#0"
class="flex items-center no-underline focus:underline px-4 py-2 text-sm"
:class="{
'bg-grey-darker text-white': link.active,
'border-transparent hover:bg-grey hover:text-blue-dark': !link.active,
'text-grey-dark cursor-not-allowed': link.disabled,
'text-grey-darker': !link.disabled,
'bg-grey-6 text-white': link.active,
'border-transparent hover:bg-grey hover:text-blue-3': !link.active,
'text-grey-5 cursor-not-allowed': link.disabled,
'text-grey-6': !link.disabled,
}"
>
<svg class="h-6 w-6 fill-current" role="presentation"><use :xlink:href="`/img/icons.symbol.svg#${link.icon}`"></use></svg>