Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated pricing card coloring #70

Merged
merged 3 commits into from
Dec 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/landing/SpecSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const SpecSection = () => {
const opacity = useTransform(scrollYProgress, [0.9, 1], [1, 0]);
return (
<section
className="col-span-full grid grid-cols-subgrid min-h-[90svh] py-16 gap-y-16 auto-rows-min overflow-y-visible items-start bg-red-500"
className="col-span-full grid grid-cols-subgrid min-h-[90svh] py-16 gap-y-16 auto-rows-min overflow-y-visible items-start "
ref={ref}
>
<motion.article
className="bg-blue-500 col-span-full sm:col-span-5 md:col-span-6 lg:col-span-4 xl:col-span-4 2xl:col-span-6 4xl:col-span-5 flex flex-col gap-8 lg:sticky top-32"
<motion.aside
className="col-span-full sm:col-span-5 md:col-span-6 lg:col-span-4 xl:col-span-4 2xl:col-span-6 4xl:col-span-5 flex flex-col gap-8 lg:sticky top-32"
style={{
opacity,
}}
Expand All @@ -31,7 +31,7 @@ const SpecSection = () => {
<InlineCTA href="https://docs.kscale.dev/robot/intro">
Read tech specs <ExpressiveArrow size="size-4" />
</InlineCTA>
</motion.article>
</motion.aside>
<article className="col-span-full grid grid-cols-subgrid gap-y-4">
<h3 className="col-span-full sm:col-span-5 sm:col-start-2 md:col-span-5 md:col-start-4 lg:col-span-4 lg:col-start-6 xl:col-span-3 xl:col-start-6 2xl:col-span-5 2xl:col-start-8 3xl:col-span-5 3xl:col-start-8 4xl:col-span-4 4xl:col-start-8 text-heading-sm">
{`We've built K-Bot with an aerospace-grade alumininum body, for under $20,000 USD. `}
Expand Down
Loading