Add default link styling
This commit is contained in:
parent
157f74948a
commit
1d7d0ab60b
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<article class="w-full sm:w-1/2 md:w-1/3 px-4 mb-8">
|
<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 bg-gray-100 shadow-lg rounded overflow-hidden">
|
||||||
<span class="block p-6">
|
<span class="block p-6">
|
||||||
<h2 class="font-bold text-gray-800 group-hover:underline">Drupal Bristol</h2>
|
<h2 class="font-bold text-gray-800 group-hover:underline">Drupal Bristol</h2>
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
|
|
||||||
|
@import './components/links.css';
|
||||||
@import './components/search-form.css';
|
@import './components/search-form.css';
|
||||||
|
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
3
src/css/components/links.css
Normal file
3
src/css/components/links.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
a:hover {
|
||||||
|
@apply underline
|
||||||
|
}
|
Loading…
Reference in a new issue