Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @mixin grid-row($width) {
  2. @include grid-container;
  3. max-width: $width;
  4. margin: 0 auto;
  5. }
  6.  
  7. div[role="page"] {
  8. main {
  9. @include grid-row(1000px);
  10. // @include grid-row(100%);
  11. article {
  12. @include grid-column(2 of 3);
  13. }
  14. aside {
  15. @include grid-column(1 of 3);
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement