I've recently started learning Semantic UI.
One issue I'm facing is that the width of the "segment" overflows the "container."
Check this JSFiddle for more clarity.
Are there any alternative solutions?
In addition to the grid system, I'm also struggling with padding (without modifying the custom CSS).
Thank you for any advice you can provide.
<div class="ui container">
<header>
<h1 class="ui huge header">Your Logo
<span class="ui sub header">Using Single layout to create several looks</span>
</h1>
</header>
<div class="ui inverted brown segment">
<div class="ui inverted secondary menu">
<a class="ui brown big button">
Home
</a>
<a class="ui brown big button">
Messages
</a>
<a class="ui brown big button">
Friends
</a>
</div>
</div>
<div class="ui grid">
<div class="row">
<div class="ui inverted green placeholder segment column">
</div>
</div>
</div>
</div>