Skip to content

Commit 4b42c27

Browse files
committed
style: add platform card:hover border style
1 parent 268d533 commit 4b42c27

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/components/LandingPage/AllTutorials.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ const PlatformList: FeatureItem[] = [
272272
{
273273
title: "Install Delegate",
274274
module: "platform",
275+
Svg: "",
275276
description: (
276277
<>Install a Docker or Kubernetes Delegate on your infrastructure.</>
277278
),
@@ -283,6 +284,7 @@ const PlatformList: FeatureItem[] = [
283284
{
284285
title: "Onboard with Terraform",
285286
module: "platform",
287+
Svg: "",
286288
description: (
287289
<>
288290
Automate lifecycle management of orgs, projects, services, environments,

src/components/LandingPage/ModuleCard.module.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
}
7171
}
7272
}
73-
.ci:hover, .cd:hover, .ff:hover, .ccm:hover, .srm:hover, .sto:hover, .ce:hover{
73+
.ci:hover, .cd:hover, .ff:hover, .ccm:hover, .srm:hover, .sto:hover, .ce:hover, .platform:hover {
7474
border: 3px solid;
7575
border-image-slice: 1;
7676
border-width: 3px;
@@ -96,6 +96,9 @@
9696
.ce:hover{
9797
border-image-source: linear-gradient(to left, rgba(255, 111, 171, 1), rgba(206, 0, 86, 1));
9898
}
99+
.platform:hover{
100+
border-image-source: linear-gradient(to left, var(--primary-5), var(--primary-7));
101+
}
99102
.allTutorials{
100103
.tutorialCard{
101104
width: 28%;

0 commit comments

Comments
 (0)