Browse Source

adding #17

master
Björn 4 years ago
parent
commit
ed90532ef6
6 changed files with 10 additions and 5 deletions
  1. +1
    -1
      dist/crispy_all.css
  2. +1
    -1
      dist/crispy_minimal.css
  3. +1
    -1
      dist/example/styles.css
  4. +0
    -1
      package.json
  5. +6
    -0
      src/_mixins.scss
  6. +1
    -1
      src/_variables.scss

+ 1
- 1
dist/crispy_all.css
File diff suppressed because it is too large
View File


+ 1
- 1
dist/crispy_minimal.css
File diff suppressed because it is too large
View File


+ 1
- 1
dist/example/styles.css
File diff suppressed because it is too large
View File


+ 0
- 1
package.json View File

@ -26,7 +26,6 @@
"sass-loader": "^8.0.0"
},
"dependencies": {
"normalize-scss": "^7.0.1",
"reflex-grid": "^2.0.4"
}
}

+ 6
- 0
src/_mixins.scss View File

@ -84,6 +84,12 @@
}
}
@mixin crispy__media-xxs-only() {
@media only screen and (max-width: $crispy__xs) {
@content;
}
}
@mixin crispy__media-xs-only() {
@media only screen and (min-width: $crispy__xs) and (max-width: $crispy__sm - 1) {
@content;


+ 1
- 1
src/_variables.scss View File

@ -22,7 +22,7 @@ $crispy__direction: ltr !default;
// spacing
$crispy__spacing: 15px !default;
$crispy__spacing__steps: 5 !default;
$crispy__spacing__steps: 7 !default;
// colors
$crispy__color-primary: #f18f01 !default;


Loading…
Cancel
Save