I'm using sematic-ui and am trying to use a ui container element to contain my other elements. When i compile the code my ui container gets a width of 1215 and not 1280. If i read the sematic ui container documentation at http://semantic-ui.com/elements/container.html it says above 1200 as large monitor breakpoint. If i check there calculations width gutters and scrollbar they are saying the default width should be 1127px for the ui container yet mine is 1215(and i didn't override it or anything).
I'm confused i guess as to wether to override the queries to every breakpoint or should i make my design fit to 1215 for the largest size?
On another note how come the variables has a breakpoint for widescreen but its not even documented?
My ultimate goal is to get the ui container to be a width of 1280 since that is what my design is at and then obviously using the breakpoints it would be responsive. I'm afraid to override their media queries as im sure its calculated for a specific reason.
Default media queries set by semantic ui in site.variables:
@mobileBreakpoint : 320px;
@tabletBreakpoint : 768px;
@computerBreakpoint : 992px;
@largeMonitorBreakpoint : 1280px;
@widescreenMonitorBreakpoint : 1920px;
outputted css for the ui container in my css:
@media only screen and (min-width: 1280px)
.ui.container {
width: 1215px;
margin-left: auto!important;
margin-right: auto!important;
}