Skip to content

Commit

Permalink
Fix some style issue on the desktop design.
Browse files Browse the repository at this point in the history
  • Loading branch information
HaudinFlorence committed Jul 4, 2024
1 parent 4c24534 commit 1a0861f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/blog/BlogpostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function BlogpostCard({ blogpost, timeIndex }) {
className={"card " + styles.blogpost_card}
style={{ marginBottom: "var(--ifm-spacing-lg)" }}
>
<div className={styles.blog_time_index}>{timeIndex}</div>

<Link href={blogpost.url}>
<div className="container">
<div
Expand Down
4 changes: 0 additions & 4 deletions src/components/blog/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
border: 1px solid #cbc7b1;
}

.blog_time_index {
font-size: 10px;
font-family: var(--ifm-font-family-roboto);
}

.blogpost_summary {
color: var(---ifm-text-color);
Expand Down
2 changes: 1 addition & 1 deletion src/components/careers/Interviews.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function Interviews({ details, description }) {
<div className={styles.subteam_component}>
<h2 className={styles.h2_custom}>{description}</h2>
<div className="container">
<ul className="row">
<ul className={"row" + " "+ "flex-full-centered"}>
{details.map((person, index) => (
<li className="cards-list" key={index}>
<div className="col col--2">
Expand Down
4 changes: 2 additions & 2 deletions src/components/careers/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ div .learn_more_WTJ {
}

.interview_card {
width: 300px;
height: 340px;
width: 280px;
height: 300px;
background-color: var(--ifm-background-color);
border-radius: 10px;
box-shadow: 0px 0px 8px 1px #c8c8c7;
Expand Down
9 changes: 7 additions & 2 deletions src/components/projects/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ div .schedule_container {

.schedule_text {
font-family: var(--ifm-font-family-roboto);
color: var(--ifm-color-secondary-s3);
color: var(--ifm-text-color-blue-banner);
font-size: 14px;
font-family: Roboto;
font-size: 14px;
Expand Down Expand Up @@ -85,6 +85,10 @@ div .schedule_container {
letter-spacing: 1.056px;
height: 52px;
}

.project_description_container {
padding: var(--ifm-spacing-xl) var(--ifm-spacing-3xl);
}
}

@media only screen and (min-width: 996px) {
Expand Down Expand Up @@ -178,12 +182,13 @@ div .schedule_container {
div .schedule_text {
color: var(--ifm-text-color-blue-banner);
}

.link_to_button_custom {
margin: var(--ifm-spacing-lg) 0;
}

.schedule_a_meeting_container {
margin-top: var(--ifm-spacing-7xl);
}

}

0 comments on commit 1a0861f

Please sign in to comment.