Skip to content
Snippets Groups Projects
Commit 677857fd authored by Marek Förster's avatar Marek Förster :wheelchair:
Browse files

Fix link color on featured items

parent c1917acc
No related branches found
No related tags found
No related merge requests found
......@@ -59,11 +59,11 @@
</div>
<nuxt-link :to="'/blog/' + post.slug" v-if="post.thumbnail" class="post__right">
<Picture v-if="post.thumbnail" :src="`${post.thumbnail}`" :alt="post.title" :is-in-view="canLoadImage" :lazy="!isIE" />
<Picture v-if="post.thumbnail" :src="`${post.thumbnail}`" :alt="post.title" :is-in-view="canLoadImage" :lazy="!isIE" />
</nuxt-link>
<div class='description'>
<p v-html="highlight(post.description)"></p>
<p class='desc' v-html="highlight(post.description)"></p>
</div>
<Button :link="'/blog/' + post.slug" arrow="right" :inverse="post.isFeatured" v-if="post.content">Detail článku</Button>
......@@ -344,6 +344,13 @@ export default {
color: $color-white;
}
.desc {
/deep/ a {
color: $color-white;
text-decoration:underline;
}
}
button {
color: $color-white;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment