@@ -22,7 +22,7 @@ <h1>{{ .Title }}</h1>
22
22
{{ $provider := index (and ((where $.Site.Data.tutorials.collections "type" "provider")) ((where $.Site.Data.tutorials.collections "id" $id))) 0 }}
23
23
24
24
< li class ="lg:w-1/{{ $perRow }} {{ if ne (mod (add $index 1) $perRow) 0 }}lg:pr-4{{ end }} ">
25
- < div class ="p-6 border border-gray-300 w-full gradient-card shadow-xl rounded-md ">
25
+ < div class ="p-6 border border-gray-300 w-full gradient-card shadow-xl rounded-md h-full ">
26
26
< div class ="flex items-center justify-between mb-4 ">
27
27
< h3 class ="flex-grow whitespace-nowrap font-display font-normal no-anchor mb-0 "> {{ $provider.name }} tutorials</ h3 >
28
28
< img class ="h-6 flex-shrink hidden sm:block " src ="{{ $provider.logo }} " />
@@ -60,7 +60,7 @@ <h2>Collections</h2>
60
60
{{ $ordinal = add $ordinal 1}}
61
61
62
62
< li class ="lg:w-1/{{ $perRow }} {{ if ne (mod $ordinal $perRow) 0 }}lg:pr-4{{ end }} ">
63
- < div class ="bg-white shadow-lg p-6 border rounded-md border-gray-200 w-full ">
63
+ < div class ="bg-white shadow-lg p-6 border rounded-md border-gray-200 w-full h-full ">
64
64
< div class ="mb-2 pb-2 border-b border-gray-200 ">
65
65
< h3 class ="no-anchor font-normal text-xl flex items-center ">
66
66
< a class ="text-gray-800 " href ="/tutorials/{{ $taxonomy }}/ ">
@@ -91,7 +91,7 @@ <h2>All tutorials</h2>
91
91
{{ $perRow = 3 }}
92
92
{{ range $index, $item := where .Pages ".Params.listed" "ne" false }}
93
93
< li class ="lg:w-1/{{ $perRow }} {{ if ne (mod (add $index 1) $perRow) 0 }}lg:pr-4{{ end }} ">
94
- < div class ="bg-white shadow-lg p-6 border rounded-md border-gray-200 w-full ">
94
+ < div class ="bg-white shadow-lg p-6 border rounded-md border-gray-200 w-full h-full ">
95
95
< div class ="mb-2 pb-2 border-b border-gray-200 ">
96
96
< h3 class ="no-anchor font-normal text-xl flex items-center ">
97
97
< a class ="text-gray-800 " href ="{{ $item.RelPermalink }} ">
0 commit comments