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

docs landing page urgent tweaks #4034

Merged
merged 2 commits into from
Jul 16, 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 src/css/custom.css
christinaausley marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,6 @@ navbar .navbar .navbar__link[href*="self-managed"] {

.component-block {
transition: all 0.3s ease;
background-color: #000;
color: white;
border-radius: 25px;
box-shadow: 4px 4px 4px 1px lightgray;
margin: 2px;
Expand All @@ -313,6 +311,15 @@ navbar .navbar .navbar__link[href*="self-managed"] {
transition: all 0.3s ease;
}

.component-block a {
color: var(--ifm-color-black);
}

.component-block a:hover {
color: var(--ifm-color-primary);
text-decoration: none;
}

div[class^="announcementBar_"] {
font-size: 120%;
padding: 1em 0;
Expand Down
16 changes: 8 additions & 8 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ function Feature({ imageUrl, url, title, description }) {
const imgUrl = useBaseUrl(imageUrl);
return (
<div className={clsx("col component-block", styles.feature)}>
{imgUrl && (
<div className="text--center">
<Link to={useBaseUrl(url)}>
<Link to={useBaseUrl(url)}>
{imgUrl && (
<div className="text--center">
<img className={styles.featureImage} src={imgUrl} alt={title} />
</Link>
</div>
)}
<h3>{title}</h3>
<p>{description}</p>
</div>
)}
<h3>{title}</h3>
<p>{description}</p>
</Link>
</div>
);
}
Expand Down
Binary file modified static/img/Camunda-self-managed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/confused-person.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/customer-success.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/education.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/handbook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/homegrown-workflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading