@andreyshpigunov/x 0.4.1 → 0.4.3
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/assets/css/app.css +1 -1
- package/dist/x.css +1 -1
- package/index.html +1 -1
- package/package.json +1 -1
- package/src/components/x/helpers.css +5 -5
- package/src/css/x.css +2 -2
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.
|
|
22
|
+
<div class="header-version nowrap">0.4.3</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
|
@@ -502,31 +502,31 @@ html.touch .touch-hide { display: none }
|
|
|
502
502
|
|
|
503
503
|
|
|
504
504
|
/* !- Display */
|
|
505
|
-
.block { display:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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 }
|
package/src/css/x.css
CHANGED
|
@@ -10,8 +10,6 @@ All right reserved.
|
|
|
10
10
|
@import "../components/x/reset.css";
|
|
11
11
|
@import "../components/x/space.css";
|
|
12
12
|
@import "../components/x/links.css";
|
|
13
|
-
@import "../components/x/grid.css";
|
|
14
|
-
@import "../components/x/flex.css";
|
|
15
13
|
@import "../components/x/flow.css";
|
|
16
14
|
@import "../components/x/form.css";
|
|
17
15
|
@import "../components/x/buttons.css";
|
|
@@ -25,6 +23,8 @@ All right reserved.
|
|
|
25
23
|
@import "../components/x/icons.css";
|
|
26
24
|
@import "../components/x/typo.css";
|
|
27
25
|
@import "../components/x/helpers.css";
|
|
26
|
+
@import "../components/x/grid.css";
|
|
27
|
+
@import "../components/x/flex.css";
|
|
28
28
|
@import "../components/x/colors.css";
|
|
29
29
|
|
|
30
30
|
/*
|