mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-27 17:31:52 +02:00
Merge pull request #660 from nunocoracao/658-fix-card-height-in-lists
🐛 fix card height in lists
This commit is contained in:
commit
b18027c486
2 changed files with 5 additions and 10 deletions
|
@ -1928,11 +1928,6 @@ select {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-max {
|
|
||||||
height: -moz-max-content;
|
|
||||||
height: max-content;
|
|
||||||
}
|
|
||||||
|
|
||||||
.h-screen {
|
.h-screen {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
@ -1965,15 +1960,15 @@ select {
|
||||||
min-height: auto;
|
min-height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.min-h-full {
|
|
||||||
min-height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.min-h-fit {
|
.min-h-fit {
|
||||||
min-height: -moz-fit-content;
|
min-height: -moz-fit-content;
|
||||||
min-height: fit-content;
|
min-height: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.min-h-full {
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.\!w-px {
|
.\!w-px {
|
||||||
width: 1px !important;
|
width: 1px !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<a href="{{ .RelPermalink }}" class="min-w-full">
|
<a href="{{ .RelPermalink }}" class="min-w-full">
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<div class="border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative backdrop-blur">
|
<div class="min-h-full border border-neutral-200 dark:border-neutral-700 border-2 rounded overflow-hidden shadow-2xl relative backdrop-blur">
|
||||||
|
|
||||||
{{- with $.Params.images -}}
|
{{- with $.Params.images -}}
|
||||||
{{- range first 6 . }}
|
{{- range first 6 . }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue