Add default link styling

This commit is contained in:
Oliver Davies 2019-04-28 18:41:50 +01:00
parent 157f74948a
commit 1d7d0ab60b
3 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
<template>
<article class="w-full sm:w-1/2 md:w-1/3 px-4 mb-8">
<router-link :to="{ name: 'project', params: { id: 1 }}" class="group block">
<router-link :to="{ name: 'project', params: { id: 1 }}" class="group block hover:no-underline">
<span class="block bg-gray-100 shadow-lg rounded overflow-hidden">
<span class="block p-6">
<h2 class="font-bold text-gray-800 group-hover:underline">Drupal Bristol</h2>

View file

@ -2,6 +2,7 @@
@tailwind components;
@import './components/links.css';
@import './components/search-form.css';
@tailwind utilities;

View file

@ -0,0 +1,3 @@
a:hover {
@apply underline
}