ES6-ified

This commit is contained in:
Sam Potts
2017-11-04 14:25:28 +11:00
parent 3d50936b47
commit 1cc2930dc0
38 changed files with 10144 additions and 11266 deletions

View File

@ -7,6 +7,7 @@
fill: currentColor;
width: @icon-size;
height: @icon-size;
vertical-align: -0.15em;
}
// Within elements
@ -18,5 +19,5 @@ label svg {
a .icon,
.btn .icon {
margin-right: (@spacing-base / 2);
margin-right: (@spacing-base / 4);
}

View File

@ -2,12 +2,21 @@
// Core
// ==========================================================================
html {
background: @page-background;
background-attachment: fixed;
*,
*::after,
*::before {
box-sizing: border-box;
}
html,
body {
display: flex;
width: 100%;
}
html {
background: @page-background;
background-attachment: fixed;
height: 100%;
}