23 lines
315 B
SCSS
23 lines
315 B
SCSS
/*
|
|
* PageBoundary
|
|
* Styles for the Page Boundaries
|
|
*
|
|
* Dependencies:
|
|
*
|
|
* Version:
|
|
* 1.0.0 - 2018/10/23
|
|
*/
|
|
.c-page-boundary {
|
|
max-width: $s-screen-boundary;
|
|
margin: 0 auto;
|
|
|
|
&.is-full {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
&.is-small {
|
|
max-width: $s-screen-boundary / 2;
|
|
}
|
|
}
|