mfbs

CSS microframework
git clone https://git.ce9e.org/mfbs.git

commit
a658aa955799d97b0df9685656a63e7cb45c2a8d
parent
2e5e2b8c08920207d5a9cb09bc6c149fe018a2b9
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2017-05-05 13:38
add width variable

Diffstat

M sass/layout.scss 2 +-
M sass/variables.scss 1 +

2 files changed, 2 insertions, 1 deletions


diff --git a/sass/layout.scss b/sass/layout.scss

@@ -1,5 +1,5 @@
    1     1 body {
    2     2     margin: 2em auto;
    3    -1     max-width: 38em;
   -1     3     max-width: $width;
    4     4     padding: 0 $padding;
    5     5 }

diff --git a/sass/variables.scss b/sass/variables.scss

@@ -14,3 +14,4 @@ $font-size-max: 1.2em !default;
   14    14 $padding: 0.5em !default;
   15    15 $spacer: 1em !default;
   16    16 $indentation: 1.5rem !default;
   -1    17 $width: 38em !default;