Skip to content

Commit

Permalink
Update to support latest Sass merge changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsupark committed Aug 17, 2022
1 parent 6a4aee9 commit b33efc4
Show file tree
Hide file tree
Showing 10 changed files with 32,321 additions and 84,227 deletions.
38,266 changes: 16,071 additions & 22,195 deletions dist/static/uniform.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/static/uniform.min.css

Large diffs are not rendered by default.

38,266 changes: 16,071 additions & 22,195 deletions dist/uniform.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/uniform.min.css

Large diffs are not rendered by default.

39,619 changes: 0 additions & 39,619 deletions dist/variablized/uniform.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/variablized/uniform.min.css

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uniformcss",
"version": "1.5.3",
"version": "1.5.4",
"description": "A fully configurable utility class generator and CSS framework built for Sass projects.",
"main": "main.sass",
"scripts": {
Expand Down
381 changes: 169 additions & 212 deletions uniform/_index.scss

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion uniform/core/_index.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UniformCSS v1.5.3 | MIT License | github.com/ThinkUniform/uniformcss */
/*! UniformCSS v1.5.4 | MIT License | github.com/ThinkUniform/uniformcss */

@use "sass:map";
@use "sass:list";
Expand Down
7 changes: 6 additions & 1 deletion uniform/core/starter/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
$exclude: map.get($all-config, excludes);
$include: map.get($all-config, includes);
$output: map.get($all-config, output);
$css-variables: map.get($all-config, css-variables);

$include-condition: true;
@if ( $output == 'headless' or map.get($config, output) == 'json' ) {
Expand Down Expand Up @@ -38,7 +39,11 @@ $include-condition: true;
}

pre, code {
font-family: var(--font-mono);
@if ( $css-variables == true ) {
font-family: var(--font-mono);
} @else {
font-family: font(mono);
}
}

[type=date],
Expand Down

0 comments on commit b33efc4

Please sign in to comment.