Docs/demo refresh

This commit is contained in:
Sam Potts
2017-10-25 23:59:53 +11:00
parent 57517a9dcc
commit 378aa159b8
39 changed files with 618 additions and 575 deletions
+19
View File
@@ -0,0 +1,19 @@
// ==========================================================================
// Super basic grid
// ==========================================================================
.grid {
margin: 0 auto;
padding: @spacing-base;
@media @mq-md {
display: flex;
align-items: center;
width: 100%;
max-width: @container-max-width;
> * {
flex: 1;
}
}
}