+
@@ -24,9 +25,8 @@ export default {
@import './assets/docs.css';
.page-container {
- width: 1140px;
- padding: 0 30px;
- margin: 0 auto;
+ height: 100%;
+ min-width: 960px;
h2 {
font-size: 28px;
@@ -34,10 +34,12 @@ export default {
margin: 20px 0;
line-height: 40px;
}
+
h3 {
font-size: 22px;
margin: 23px 0;
}
+
h2, h3, h4, h5 {
font-weight: normal;
color: #1f2f3d;
@@ -57,6 +59,7 @@ export default {
}
}
}
+
p {
font-size: 14px;
color: #5e6d82;
@@ -65,8 +68,32 @@ export default {
}
.page-content {
- width: 75%;
+ width: 52%;
+ box-sizing: border-box;
float: left;
+ padding: 0 15px;
+ overflow: auto;
+ height: inherit;
+ }
+
+ .mobile-wrapper {
+ float: left;
+ width: 30%;
+ height: 300px;
+ position: relative;
+ }
+
+ .mobile {
+ margin: 20px 20px 0;
+ height: 100%;
+ box-sizing: border-box;
+ width: 365px;
+ }
+
+ .demo-page {
+ width: 100%;
+ border: 5px solid #f5f5f5;
+ height: 580px;
}
.table {
@@ -77,16 +104,16 @@ export default {
font-size: 14px;
margin-bottom: 45px;
- th:first-child {
- padding-left: 10px;
- }
-
th {
text-align: left;
border-top: 1px solid #eaeefb;
border-bottom: 1px solid #eaeefb;
background-color: #eff2f7;
padding: 10px;
+
+ &:first-child {
+ padding-left: 10px;
+ }
}
td {
diff --git a/docs/assets/docs.css b/docs/assets/docs.css
index 2f038afb2..7f9ccf66c 100644
--- a/docs/assets/docs.css
+++ b/docs/assets/docs.css
@@ -18,11 +18,16 @@ time, mark, audio, video {
vertical-align: baseline;
}
+html {
+ height: 100%;
+}
+
body {
font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',SimSun,sans-serif;
- overflow: auto;
+ overflow: hidden;
font-weight: 400;
-webkit-font-smoothing: antialiased;
+ height: 100%;
}
a {
@@ -53,4 +58,16 @@ ul {
-webkit-font-smoothing: auto;
}
+.clearfix {
+ &::before {
+ display: table;
+ content: "";
+ }
+
+ &::after {
+ display: table;
+ content: "";
+ clear: both;
+ }
+}
diff --git a/docs/components/demo-list.vue b/docs/components/demo-list.vue
new file mode 100644
index 000000000..0c457e14a
--- /dev/null
+++ b/docs/components/demo-list.vue
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
diff --git a/docs/components/mobile.vue b/docs/components/mobile.vue
new file mode 100644
index 000000000..8685d2452
--- /dev/null
+++ b/docs/components/mobile.vue
@@ -0,0 +1,7 @@
+
+
+
diff --git a/docs/components/side-nav.vue b/docs/components/side-nav.vue
index 50f7e1099..17e0c9f01 100644
--- a/docs/components/side-nav.vue
+++ b/docs/components/side-nav.vue
@@ -62,10 +62,13 @@
-
## Button组件
### 按钮功能
-:::demo 只接受primary, default, danger三种类型,默认default
+只接受primary, default, danger三种类型,默认default。
+
```html
```
-:::
### 禁用状态
-:::demo
```html
```
-:::
### 按钮尺寸
-:::demo 只接受large, normal, small, mini四种尺寸,默认normal
+只接受large, normal, small, mini四种尺寸,默认normal。
+
```html