We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf0e977 + 8b95b76 commit 81596fcCopy full SHA for 81596fc
components/algorithmsList/algorithmCard/index.tsx
@@ -20,7 +20,7 @@ export default function AlgorithmCard({ algorithm }: { algorithm: Algorithm }) {
20
const t = useTranslation();
21
22
return (
23
- <Card className="elevateOnHover">
+ <Card className={`elevateOnHover ${classes.stretchedCard}`}>
24
<CardContent>
25
<Breadcrumbs>
26
{algorithm.categories.map((category) => (
components/algorithmsList/algorithmCard/style.module.css
@@ -35,3 +35,10 @@
35
.actions {
36
justify-content: space-between;
37
}
38
+
39
+.stretchedCard {
40
+ height: 100%;
41
+ display: flex;
42
+ flex-direction: column;
43
+ justify-content: space-between;
44
+}
0 commit comments