mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
17 lines
346 B
SCSS
17 lines
346 B
SCSS
|
//
|
||
|
// Layouts
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
// Container (centered, fixed-width layouts)
|
||
|
.container {
|
||
|
@include container-fixed();
|
||
|
}
|
||
|
|
||
|
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
||
|
.container-fluid {
|
||
|
padding-right: $gridGutterWidth;
|
||
|
padding-left: $gridGutterWidth;
|
||
|
@include clearfix();
|
||
|
}
|