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

[web] Fixed color and button #9601

Merged
merged 2 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
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
11 changes: 9 additions & 2 deletions front/components/home/ContentBlocks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,20 @@ export const CarousselContentBlock = ({
</P>
</div>
<div className="w-full text-left">
<Link href={href} shallow={true} className="inline-block">
<Link href={href} shallow={true} className="inline-block max-w-full">
<Button
label={"Discover Dust"}
variant="outline"
size="md"
icon={ArrowRightIcon}
className="flex max-w-full md:hidden"
/>
<Button
label={"Discover Dust for " + title}
variant="outline"
size="md"
icon={ArrowRightIcon}
className="max-w-full"
className="hidden max-w-full md:flex"
/>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion front/components/home/ContentComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const pClasses = {
xxs: "font-objektiv text-xs text-muted-foreground md:text-sm leading-relaxed",
xs: "font-objektiv text-sm text-slate-400 md:text-base leading-relaxed",
sm: "font-objektiv text-base text-slate-400 md:text-lg leading-relaxed",
md: "font-objektiv text-lg md:text-lg text-slate-300 lg:text-xl leading-relaxed",
md: "font-objektiv text-lg md:text-lg text-slate-700 lg:text-xl leading-relaxed",
lg: "font-objektiv text-lg md:text-xl text-slate-300 lg:text-2xl drop-shadow leading-relaxed",
};

Expand Down
Loading