Skip to content

Commit 4dc1f01

Browse files
add arrow pro
1 parent 859ff1f commit 4dc1f01

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

apps/codingcatdev/src/routes/(home-partials)/(home-pro-benefits)/HomeProBenefits.svelte

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import GitLineGradient from '../(home-campaign)/GitLineGradient.svelte';
55
import CheckBadgeSvg from './CheckBadgeSvg.svelte';
66
import ProSelect from './ProSelect.svelte';
7+
import CheckOutArrow from '../(home-latest-course)/CheckOutArrow.svelte';
78
</script>
89

910
<section class="bg-primary-200-700-token">
@@ -16,10 +17,11 @@
1617
<CheckBadgeSvg />
1718
<GitLineGradient rotate={true} />
1819
</div>
19-
<div class="basis-11/12 pl-4 sm:pl-2 py-20">
20+
<div class="basis-11/12 pl-4 sm:pl-2 py-48">
2021
<div class="flex flex-col lg:flex-row gap-8 items-center">
2122
<div class="sm:basis-2/3 flex flex-col justify-center gap-8">
2223
<div class="flex flex-col gap-4">
24+
<div class="check-out-arrow"><CheckOutArrow /></div>
2325
<h2>Subscribe for Premium Benefits</h2>
2426
<p class="max-w-lg">
2527
Are you ready to take your experience to the next level? Our premium plan unlocks
@@ -72,3 +74,22 @@
7274
</div>
7375
</div>
7476
</section>
77+
78+
<style>
79+
@media (max-width: 1024px) {
80+
.check-out-arrow {
81+
display: none;
82+
}
83+
}
84+
@media (min-width: 1024px) {
85+
.check-out-arrow {
86+
position: absolute;
87+
transform: rotate(65deg) scale(1, -1);
88+
89+
width: 141px;
90+
height: 343px;
91+
right: 400px;
92+
top: -60px;
93+
}
94+
}
95+
</style>

0 commit comments

Comments
 (0)