Merge pull request #672 from nunocoracao/663-list-hover-styling-too-bright

fixed 🎨 List hover styling too bright
This commit is contained in:
Nuno Coração 2023-04-22 12:55:20 +01:00 committed by GitHub
commit 979dd97103
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 3 additions and 5 deletions

View file

@ -744,7 +744,6 @@ select {
.prose :where(a):not(:where([class~="not-prose"] *)):hover {
color: rgba(var(--color-neutral), 1);
text-decoration: none;
background-color: rgba(var(--color-primary-600), 1);
border-radius: 0.09rem;
}

View file

@ -1,5 +1,5 @@
{{ $parent := .Page.RelPermalink }}
<section class="w-full mt-10 mb-10">
<section class="space-y-10 w-full">
{{ $RelPermalink := .Get "link" }}
{{ range ( where .Site.RegularPages "RelPermalink" $RelPermalink | first 1 ) }}
{{ if not (eq .RelPermalink $parent) }}

View file

@ -3,7 +3,7 @@
{{- with $githubData -}}
<a target="_blank" href="{{ .html_url }}" class="cursor-pointer">
<div class="w-full md:w-auto pt-3 p-5 border border-neutral-200 dark:border-neutral-700 border-2 rounded-md backdrop-blur shadow-2xl">
<div class="w-full md:w-auto pt-3 p-5 border border-neutral-200 dark:border-neutral-700 border rounded-md backdrop-blur shadow-2xl">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral" style="margin-right:10px;">

View file

@ -2,7 +2,7 @@
{{- with $gitLabData -}}
<a target="_blank" href="{{ .html_url }}" class="cursor-pointer">
<div class="w-full md:w-auto pt-3 p-5 border border-neutral-200 dark:border-neutral-700 border-2 rounded-md backdrop-blur shadow-2xl">
<div class="w-full md:w-auto pt-3 p-5 border border-neutral-200 dark:border-neutral-700 border rounded-md backdrop-blur shadow-2xl">
<div class="flex items-center">
<span class="text-2xl text-neutral-800 dark:text-neutral" style="margin-right:10px;">

View file

@ -98,7 +98,6 @@ module.exports = {
"&:hover": {
color: theme("colors.neutral.DEFAULT / 1"),
textDecoration: "none",
backgroundColor: theme("colors.primary.600 / 1"),
borderRadius: "0.09rem",
},
},