nk_jtb 0.8.3 → 0.8.6

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.8.3",
4
+ "version": "0.8.6",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/naykel76/nk_jtb.git"
package/src/jtb.scss CHANGED
@@ -39,10 +39,11 @@
39
39
  @forward "./scss/utilities/translate";
40
40
  @forward "./utilities/general";
41
41
  @forward "./utilities/grid";
42
+ @forward "./utilities/size";
42
43
  @forward "./utilities/text";
43
44
  @forward "./utilities/transition";
44
45
  @forward "./utilities/utilities"; // godfather utility sheet
45
46
 
46
- // // extras
47
+ // extras
47
48
  @use "./color/tailwind-colors" as *;
48
49
  @use "./extras/code" as *;
@@ -19,7 +19,11 @@
19
19
  margin-top: $content-gap;
20
20
  }
21
21
 
22
+ // excluding .flex + input is experimental.the exclusion makes it
23
+ // easier to add tool-tips with a label
24
+
22
25
  // opt-out
23
- :is(.flex, [class^="grid"]) > * {
26
+ :is(.flex, [class^="grid"]) > *,
27
+ .flex + input {
24
28
  margin: 0;
25
29
  }
@@ -60,18 +60,13 @@ $navbar-nav-item-color: setTextColor($navbar-nav-item-bg) !default;
60
60
 
61
61
  $navbar-nav-hover-bg: lighten($navbar-nav-item-bg, 3%) !default;
62
62
  $navbar-nav-hover-color: lighten(setTextColor($navbar-nav-item-bg), 20%) !default;
63
+ // $navbar-nav-hover-bg: lighten($navbar-nav-item-bg, 3%) !default;
64
+ // $navbar-nav-hover-color: lighten(setTextColor($navbar-nav-item-bg), 20%) !default;
63
65
 
64
66
  $navbar-nav-active-bg: darken($navbar-nav-item-bg, 3%) !default;
65
67
  $navbar-nav-active-color: darken(setTextColor($navbar-nav-item-bg), 20%) !default;
66
68
 
67
- // $navbar-menu-color
68
69
 
69
- // $navbar:(
70
- // 'hover':(
71
- // 'color': red,
72
- // "background": darken($navbar-nav-item-bg, 3%)
73
- // )
74
- // );
75
70
  // -- lists --
76
71
  // ==============================================================
77
72
  $icon-list-color: inherit !default;