mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
16 lines
346 B
SCSS
16 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();
|
|
}
|