@andreyshpigunov/x 0.4.1 → 0.4.2

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.4.1</div>
22
+ <div class="header-version nowrap">0.4.2</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.4.1",
3
+ "version": "0.4.2",
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
+ }
@@ -502,31 +502,31 @@ html.touch .touch-hide { display: none }
502
502
 
503
503
 
504
504
  /* !- Display */
505
- .block { display: none }
505
+ .block { display: block }
506
506
  .inline { display: inline }
507
507
  .inline-block { display: inline-block }
508
508
  .table { display: table }
509
509
 
510
510
  @media (min-width: 640px) {
511
- .s\:block { display: none }
511
+ .s\:block { display: block }
512
512
  .s\:inline { display: inline }
513
513
  .s\:inline-block { display: inline-block }
514
514
  .s\:table { display: table }
515
515
  }
516
516
  @media (min-width: 768px) {
517
- .m\:block { display: none }
517
+ .m\:block { display: block }
518
518
  .m\:inline { display: inline }
519
519
  .m\:inline-block { display: inline-block }
520
520
  .m\:table { display: table }
521
521
  }
522
522
  @media (min-width: 1024px) {
523
- .l\:block { display: none }
523
+ .l\:block { display: block }
524
524
  .l\:inline { display: inline }
525
525
  .l\:inline-block { display: inline-block }
526
526
  .l\:table { display: table }
527
527
  }
528
528
  @media (min-width: 1280px) {
529
- .xl\:block { display: none }
529
+ .xl\:block { display: block }
530
530
  .xl\:inline { display: inline }
531
531
  .xl\:inline-block { display: inline-block }
532
532
  .xl\:table { display: table }