no message

Former-commit-id: 698711eb10677ac551d293a881b65e92c079120a
Former-commit-id: 5aac177b416c582cca07f06061af0fffc6738c99
Former-commit-id: 257ce921c7506717db92df174ac56f74c6c0204b
This commit is contained in:
李杨 2018-01-16 21:26:36 +08:00
parent 408f39d84e
commit de6e26ca53
4 changed files with 33 additions and 26 deletions

View File

@ -1,7 +1,12 @@
// 优化显示 // 优化显示
body { html, body {
margin: 0px; margin: 0px;
height: 100%;
background-color: $color-bg;
#app {
height: 100%;
}
} }
pre { pre {

View File

@ -15,14 +15,8 @@
// 注意 这个文件里只写class // 注意 这个文件里只写class
// mixin等内容请在 public.scss 里书写 // mixin等内容请在 public.scss 里书写
html, body {
height: 100%;
background-color: $color-bg;
#app {
height: 100%;
}
}
// 浮动相关
.fl { .fl {
float: left; float: left;
} }
@ -38,10 +32,35 @@ html, body {
clear: both clear: both
} }
// 下边距 // 边距相关
.m {
margin: $margin;
}
.mt {
margin-top: $margin;
}
.mr {
margin-right: $margin;
}
.mb { .mb {
margin-bottom: $margin; margin-bottom: $margin;
} }
.ml {
margin-left: $margin;
}
.m-0 {
margin: 0px;
}
.mt-0 {
margin-top: 0px;
}
.mr-0 {
margin-right: 0px;
}
.mb-0 { .mb-0 {
margin-bottom: 0px; margin-bottom: 0px;
} }
.ml-0 {
margin-left: 0px;
}

View File

@ -1,10 +0,0 @@
<template>
<Container>
<PageHeader
slot="header"
title="README.md"
url="https://github.com/jbaysolutions/vue-grid-layout">
</PageHeader>
<Markdown url="https://raw.githubusercontent.com/jbaysolutions/vue-grid-layout/master/README.md"></Markdown>
</Container>
</template>

View File

@ -76,13 +76,6 @@ export const pluginMenu = {
title: '网格布局', title: '网格布局',
icon: 'object-ungroup', icon: 'object-ungroup',
children: [ children: [
{
title: 'README',
icon: 'file-text',
path: 'vue-grid-layout/readme',
name: 'demo-plugin-vue-grid-layout-readme',
component: resolve => { require(['@/pages/demo/plugins/vue-grid-layout/readme.vue'], resolve) }
},
{ {
title: '基本示例', title: '基本示例',
icon: 'file-o', icon: 'file-o',