@andreyshpigunov/x 0.5.12 → 0.5.14

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/index.html CHANGED
@@ -19,7 +19,7 @@
19
19
  "functionName": "headerAnimation"
20
20
  }'>
21
21
  <header class="header flex aic sticky t0 px5 m:px6 l:px8 unselectable">
22
- <div class="header-version nowrap">0.5.12</div>
22
+ <div class="header-version nowrap">0.5.14</div>
23
23
  <div class="header-logo mxa">
24
24
  <a role="button" x-scrollto="#top">
25
25
  <img src="assets/img/logo.png" alt="x" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andreyshpigunov/x",
3
- "version": "0.5.12",
3
+ "version": "0.5.14",
4
4
  "x-js": "dist/x.js",
5
5
  "app-js": "assets/js/app.js",
6
6
  "targets": {
@@ -50,4 +50,4 @@
50
50
  "./x.css": "./dist/x.css",
51
51
  "./x.js": "./dist/x.js"
52
52
  }
53
- }
53
+ }
@@ -24,6 +24,7 @@ All right reserved.
24
24
  .oh
25
25
  .touch-show
26
26
  .touch-hide
27
+ .fix
27
28
  .rel
28
29
  .abs
29
30
  .ins
@@ -211,6 +212,7 @@ html.touch .touch-hide { display: none }
211
212
 
212
213
 
213
214
  /* !- Position */
215
+ .fix { position: fixed }
214
216
  .rel { position: relative }
215
217
  .abs { position: absolute }
216
218
  .ins { position: absolute; inset: 0 }
package/src/css/x.css CHANGED
@@ -16,11 +16,11 @@ All right reserved.
16
16
  @import "../components/x/space.css" layer(space);
17
17
  @import "../components/x/typo.css" layer(typo);
18
18
  @import "../components/x/links.css" layer(links);
19
+ @import "../components/x/form.css" layer(form);
20
+ @import "../components/x/buttons.css" layer(buttons);
19
21
  @import "../components/x/grid.css" layer(grid);
20
22
  @import "../components/x/flex.css" layer(flex);
21
23
  @import "../components/x/flow.css" layer(flow);
22
- @import "../components/x/form.css" layer(form);
23
- @import "../components/x/buttons.css" layer(buttons);
24
24
  @import "../components/x/dropdown.css" layer(dropdown);
25
25
  @import "../components/x/sheets.css" layer(sheets);
26
26
  @import "../components/x/slider.css" layer(slider);