no message

Former-commit-id: 60505912651ddacc577a71a241cca629061a71f6
Former-commit-id: cdf8bdb5787d66c32b2e1d769c97b83b80fd8ced
Former-commit-id: 1671b0c2f378c6cb4fe9588b477677a5c4abb1d8
This commit is contained in:
liyang
2018-06-11 22:33:32 +08:00
parent 7e0c1182a3
commit c33e7f3c4a
3 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ $theme-bg-color: $color-bg;
// 主题背景图片
// $theme-bg-image: '/static/image/bg/xxx.jpg';
// container组件的边框
$theme-container-border-inner: 1px solid $color-border-1;
$theme-container-border-inner: 1px solid $color-border-2;
$theme-container-border-outer: 1px solid $color-border-1;
// 顶栏和侧边栏中展开的菜单 hover 状态下

View File

@@ -5,8 +5,8 @@ $theme-bg-color: #EFF4F8;
// 主题背景图片
$theme-bg-image: '/static/image/bg/star.jpg';
// container组件的边框
$theme-container-border-inner: 1px solid #d8dfea;
$theme-container-border-outer: 1px solid #d8dfea;
$theme-container-border-inner: 1px solid $color-border-2;
$theme-container-border-outer: none;
// 顶栏和侧边栏中展开的菜单 hover 状态下
$theme-menu-item-color-hover: #293849;

View File

@@ -28,7 +28,7 @@ const routes = [
children: (pre => [
{ path: 'container/full', name: `${pre}container-full`, component: () => import('@/pages/demo/components/container/full.vue') },
{ path: 'container/ghost', name: `${pre}container-ghost`, component: () => import('@/pages/demo/components/container/ghost.vue') },
{ path: 'container/normal', name: `${pre}container-card`, component: () => import('@/pages/demo/components/container/card.vue') },
{ path: 'container/card', name: `${pre}container-card`, component: () => import('@/pages/demo/components/container/card.vue') },
{ path: 'countup', name: `${pre}countup`, component: () => import('@/pages/demo/components/countup/index.vue') },
{ path: 'editor-quill', name: `${pre}editor-quill`, component: () => import('@/pages/demo/components/editor-quill/index.vue') },
{ path: 'editor-simpleMDE', name: `${pre}editor-simpleMDE`, component: () => import('@/pages/demo/components/editor-simpleMDE/index.vue') },