Skip to content

Commit

Permalink
demo(style): add typographie
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed Oct 31, 2019
1 parent f212ddd commit f443ea8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions demo/src/styles.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
@import '~dist/core/style/theming'; // replace ~dist by ~@igo2
@import '~dist/core/style/typography';
@import '~dist/common/style/common.theming'; // replace ~dist by ~@igo2
@import '~dist/geo/style/geo.theming'; // replace ~dist by ~@igo2

@mixin igo-all-theming($theme) {
@include igo-theming($theme);
@include igo-common-theming($theme);
@include igo-geo-theming($theme);
@include igo-theming($theme, $igo-typography);
@include igo-common-theming($theme, $igo-typography);
@include igo-geo-theming($theme, $igo-typography);
}

.blue-theme {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/lib/object-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class ObjectUtils {
b = [a, (a = b)][0];
}

// nullsFirst = undefined : end if direction = 'asc', first if direction = 'dess'
// nullsFirst = undefined : end if direction = 'asc', first if direction = 'desc'
// nullsFirst = true : always first
// nullsFirst = false : always end
// *** 'undefined' values are always at the end of array despite the 'nullsFirst' option
Expand Down

0 comments on commit f443ea8

Please sign in to comment.