@andreyshpigunov/x 0.5.10 → 0.5.11
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 +4 -5
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.
|
|
22
|
+
<div class="header-version nowrap">0.5.11</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
|
@@ -1140,22 +1140,21 @@ html.touch .touch-hide { display: none }
|
|
|
1140
1140
|
|
|
1141
1141
|
/* !- Letter spacing */
|
|
1142
1142
|
@for $i from 0 to 4 {
|
|
1143
|
-
.ls$(i) { letter-spacing: calc($(i)
|
|
1143
|
+
.ls$(i) { letter-spacing: calc(.1em * $(i)) }
|
|
1144
1144
|
}
|
|
1145
|
-
|
|
1146
1145
|
@media (min-width: 768px) {
|
|
1147
1146
|
@for $i from 0 to 4 {
|
|
1148
|
-
.m\:ls$(i) { letter-spacing: calc($(i)
|
|
1147
|
+
.m\:ls$(i) { letter-spacing: calc(.1em * $(i)) }
|
|
1149
1148
|
}
|
|
1150
1149
|
}
|
|
1151
1150
|
@media (min-width: 1024px) {
|
|
1152
1151
|
@for $i from 0 to 4 {
|
|
1153
|
-
.l\:ls$(i) { letter-spacing: calc($(i)
|
|
1152
|
+
.l\:ls$(i) { letter-spacing: calc(.1em * $(i)) }
|
|
1154
1153
|
}
|
|
1155
1154
|
}
|
|
1156
1155
|
@media (min-width: 1280px) {
|
|
1157
1156
|
@for $i from 0 to 4 {
|
|
1158
|
-
.xl\:ls$(i) { letter-spacing: calc($(i)
|
|
1157
|
+
.xl\:ls$(i) { letter-spacing: calc(.1em * $(i)) }
|
|
1159
1158
|
}
|
|
1160
1159
|
}
|
|
1161
1160
|
|