Skip to content

Commit

Permalink
CORE-4884: improvements on use cases (#1138) (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekachxaidze98 authored Apr 5, 2024
1 parent 0d7dbb2 commit 4c9b210
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/experiences-card/experiencesCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const ExperiencesCard = ({ title, data }) => (
<img className={styles.userImg} src={repo.img} alt="" />
<div>
<h6 className={styles.user}>{repo.user}</h6>
<span className={styles.position}>{repo.position}</span>
<p className={styles.position}>{repo.position}</p>
</div>
</div>
<Button target="blank" href={repo.action.url}>
Expand Down
13 changes: 10 additions & 3 deletions components/experiences-card/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $breakpoint-lg: 1415px;
padding: 16px;
.item-title {
color: #000;
font-size: 24px;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 32px;
Expand All @@ -68,14 +68,21 @@ $breakpoint-lg: 1415px;
border-top: 1px solid #e0e0e0;
.user-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-start;
width: 70%;
.user-img {
margin-right: 14px;
}
.user {
margin-bottom: 6px;
}
.position {
color: #666;
font-size: 14px;
font-style: normal;
font-weight: 400;
letter-spacing: 0.048px;
}
}
}
@media (max-width: $breakpoint-md) {
Expand Down

0 comments on commit 4c9b210

Please sign in to comment.