kn-cli 1.0.6 → 1.0.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -17,6 +17,9 @@
17
17
 
18
18
  # 更新日志
19
19
 
20
+ * 1.0.7
21
+ 1. 解决对antd-mobile的Tabs组件当前tab下划线焦点无法跟随的问题
22
+
20
23
  * 1.0.6
21
24
  1. APP模板增加**dev.sh**用于快速直接启动调试
22
25
  2. APP模板readme变更
@@ -0,0 +1,7 @@
1
+
2
+ :global{
3
+ // 解决tabs的下划线无法跟随当前焦点问题
4
+ .adm-tabs-tab-wrapper.adm-tabs-tab-wrapper-stretch{
5
+ position:static;
6
+ }
7
+ }
@@ -4,6 +4,7 @@ import antd from 'antd-mobile';
4
4
  antd;
5
5
 
6
6
  import './_reset.less';
7
+ import './_antd.less';
7
8
 
8
9
  import { HashRouter } from 'react-router-dom';
9
10
  import PageLoading from '@/components/Page/PageLoading';