Improve projects

This commit is contained in:
2022-07-11 14:18:07 +02:00
parent d407de7626
commit 90d25ea528
2 changed files with 3 additions and 4 deletions

View File

@@ -22,8 +22,7 @@ const { t } = useI18n()
:href="url"
target="_blank"
>
<div class="w-full h-full p-2 border-2 rounded-lg border-white hover:border-gray-300 duration-500 cursor-pointer">
<div class="w-full h-full p-2 border-2 rounded-lg border-white dark:border-gray-700 hover:border-gray-300 dark:hover:border-gray-500 duration-500 cursor-pointer">
<h1 class="font-bold">
{{ title }}
</h1>

View File

@@ -7,7 +7,7 @@ const { t } = useI18n()
<template>
<SectionTitle title="projects.title" />
<SectionPart>
<div class="grid gris-cols-1 sm:grid-cols-2 gap-x-8 gap-y-4 mb-4">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-x-8 gap-y-4 mb-4 h-full auto-rows-fr">
<Project
title="Ares"
description="projects.ares"
@@ -33,7 +33,7 @@ const { t } = useI18n()
<a
href="https://arthurdanjou.fr/projects"
target="_blank"
class="leading-5 font-bold border-b-2 hover:(border-gray-700 dark:border-white) border-gray-300 dark:border-gray-700 dark:border-gray-800 duration-300 cursor-pointer"
class="leading-5 font-bold border-b-2 hover:(border-gray-700 dark:border-white) border-gray-300 dark:border-gray-600 dark:border-gray-800 duration-300 cursor-pointer"
>
{{ t('projects.more') }}
</a>