nk_jtb 0.12.2 → 0.12.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nk_jtb",
3
3
  "description": "Yet another utility based framework.",
4
- "version": "0.12.2",
4
+ "version": "0.12.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/naykel76/nk_jtb.git"
@@ -71,7 +71,11 @@ $accordion-hover-bg: darken($accordion-bg, 5%) !default;
71
71
  // ==========================================================================
72
72
  // These styles are specific to the CSS accordion.
73
73
 
74
- .accordion {
74
+ // use :where to lower specificity allowing for easier customization
75
+ :where(.accordion) {
76
+ // This is a problem when you want to use an input inside the accordion. You
77
+ // will need to manually set the position, opacity, and z-index to get the
78
+ // input to appear.
75
79
  input {
76
80
  position: absolute;
77
81
  opacity: 0;
@@ -38,6 +38,15 @@ $flex-properties-map: (
38
38
  stretch: stretch
39
39
  )
40
40
  ),
41
+ flex: (
42
+ prefix: #{$flex-identifier},
43
+ values: (1, 2,
44
+ ('auto': 1 1 auto),
45
+ ('initial': 0 1 auto),
46
+ 'none'
47
+ ),
48
+ breakpoints: ("sm", "md", "lg", "xl")
49
+ ),
41
50
  flex-direction: (
42
51
  prefix: #{$flex-identifier},
43
52
  values: (
@@ -97,7 +97,7 @@ $typography-properties-map: (
97
97
  ),
98
98
  line-height: (
99
99
  prefix: "#{$line-height-identifier}",
100
- values: ( 1, 2 )
100
+ values: ( 1, 1.5, 2 )
101
101
  ),
102
102
  text-align: (
103
103
  prefix: "#{$text-align-identifier}",