Hi there!
I am trying to figure out why the instead of getting a perfect circle I get an oval shape.
Look at the code:
<div className="service-items">
<div className="service--circle-full">
<span>1</span>
</div>
<p className="service--topic">{t('service.topic1')}</p>
</div>
CSS
.service-items {
display: flex;
align-items: center;
margin-bottom: 40px;
}
.service--topic {
font-size: var(--fs-desc);
margin-left: 20px;
}
.service--text {
display: inline-block;
vertical-align: middle;
font-size: 18px;
}
.service--circle-full{
height: 70px;
width: 70px;
background-color: var(--primaryGreen-400);
color: var(--white);
border-radius: 100%;
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 24px;
font-weight: bold;
}
Let me know how to fix this please.
Best
P.