Is there a way to customize the default Header provided by react semantic UI?
Currently, I have placed my Header within a div so that I can apply custom styles.
<div className="portfolioTitle">
<Header as="h1">Check out this amazing feature</Header>
</div>
CSS:
.portfolioTitle {
padding-left: 10%;
position: relative;
padding-bottom: 3%;
padding-top: 3%;
}
While this method works, I'm looking for a way to achieve the same result without using a div container. I attempted to follow this solution, but it didn't work for me.
Any suggestions or alternatives? Thank you.