Skip to content

Commit 2e52be5

Browse files
committed
Fix: Update
Signed-off-by: vr-varad <varadgupta21@gmail.com>
1 parent 755976c commit 2e52be5

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/components/Workshop-Card/WorkshopsCardWrapper.style.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ const WorkshopCardWrapper = styled.div`
2626
2727
.title {
2828
text-align: center;
29+
font-size: 1.25rem;
2930
padding-bottom: 0.625rem;
3031
}
3132
3233
.image-container {
3334
display: block;
3435
width: 100%;
36+
height: 50%;
3537
overflow: hidden;
3638
}
3739

src/components/Workshop-Card/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const WorkshopCardContent = ({ frontmatter, content, ID, id }) => {
1616
</div>
1717
<div className={content && ID === id ? "card-content-open" : "card-content"}>
1818
<div>
19-
<h6 className="title">{frontmatter.title}</h6>
19+
<h3 className="title">{frontmatter.title}</h3>
2020
</div>
2121
</div>
2222
</div>

0 commit comments

Comments
 (0)