I want to override default Header that belong to react semantic UI.
Currently I positioned my Header inside div in order to style it.
<div className="portfolioTitle">
<Header as="h1">Check the magic</Header>
</div>
CSS:
.portfolioTitle {
padding-left: 10%;
position: relative;
padding-bottom: 3%;
padding-top: 3%;
}
This solution is working, but I want to do the same without using div. I tried to implement this solution, but it's not working for me.
Any ideas? Thanks.