mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 22:31:53 +02:00
Merge pull request #672 from nunocoracao/663-list-hover-styling-too-bright
fixed 🎨 List hover styling too bright
This commit is contained in:
commit
979dd97103
5 changed files with 3 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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) }}
|
||||
|
|
|
@ -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;">
|
||||
|
|
|
@ -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;">
|
||||
|
|
|
@ -98,7 +98,6 @@ module.exports = {
|
|||
"&:hover": {
|
||||
color: theme("colors.neutral.DEFAULT / 1"),
|
||||
textDecoration: "none",
|
||||
backgroundColor: theme("colors.primary.600 / 1"),
|
||||
borderRadius: "0.09rem",
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue