react component
<div className={styles.input}>
<p className="titleText">{titleText}</p>
<p>{headerText}</p>
.....
CSS selector
.titleText {
width: 54px;
height: 12px;
font-size: 12px;
line-height: 12px;
color: #333333;
}
But style is not getting applied to <p className="titleText">{titleText}</p>
, please clarify what’s wrong with the selector of child element ?
Thanks,
Vikram