Improve card style
This commit is contained in:
parent
f73305aa4a
commit
c5bab80f97
2 changed files with 23 additions and 3 deletions
|
@ -1153,6 +1153,18 @@ html:not(.dark) .light\:hidden {
|
||||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.md\:flex-row {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:items-center {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md\:gap-2 {
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.md\:text-2xl {
|
.md\:text-2xl {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
line-height: 2rem;
|
line-height: 2rem;
|
||||||
|
@ -1235,6 +1247,14 @@ html:not(.dark) .light\:hidden {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lg\:items-center {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg\:gap-2 {
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.lg\:bg-transparent {
|
.lg\:bg-transparent {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
<li>
|
<li>
|
||||||
<article>
|
<article>
|
||||||
{{ .Params.iconSvg | safeHTML }}
|
{{ .Params.iconSvg | safeHTML }}
|
||||||
<div class="flex items-center gap-2 mb-2">
|
<div class="flex flex-col lg:flex-row lg:items-center lg:gap-2 mb-2">
|
||||||
{{ if isset .Params "icon" }}
|
{{ if isset .Params "icon" }}
|
||||||
<i class="ri-{{ .Params.icon }} block text-3xl"></i>
|
<i class="ri-{{ .Params.icon }} block text-3xl"></i>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<h4 class="inline mr-1"><a href="{{ .Params.href }}" class="font-bold link">{{ .Title }}</a></h4>
|
<h4 class="mr-1"><a href="{{ .Params.href }}" class="font-bold link">{{ .Title }}</a></h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="inline prose">
|
<div class="prose">
|
||||||
{{ .Params.description | safeHTML }}
|
{{ .Params.description | safeHTML }}
|
||||||
</div>
|
</div>
|
||||||
{{/* <p class="mt-2">
|
{{/* <p class="mt-2">
|
||||||
|
|
Loading…
Reference in a new issue