fix(cli): duplicated site base style

This commit is contained in:
陈嘉涵 2019-12-20 11:30:56 +08:00
parent caa568895d
commit 5485d2ce21
18 changed files with 40 additions and 23 deletions

View File

@ -1,13 +1,13 @@
@import './variable';
@import './var';
body {
min-width: 1100px;
margin: 0;
overflow-x: auto;
color: #333;
color: @van-doc-black;
font-size: 16px;
font-family: PingFang SC, 'Helvetica Neue', Arial, sans-serif;
background-color: #f0f3f6;
background-color: @van-doc-background-color;
-webkit-font-smoothing: antialiased;
}

View File

@ -1,4 +1,4 @@
@import './variable';
@import './var';
code {
position: relative;

View File

@ -1,3 +0,0 @@
@import './variable';
@import './base';
@import './highlight';

View File

@ -4,6 +4,7 @@
@van-doc-fuchsia: #a7419e;
@van-doc-text-color: #34495e;
@van-doc-text-light-blue: rgba(69, 90, 100, .6);
@van-doc-background-color: #f7f8fa;
@van-doc-grey: #999;
@van-doc-dark-grey: #666;
@van-doc-light-grey: #ccc;

View File

@ -90,6 +90,9 @@ export default {
</script>
<style lang="less">
@import '../common/style/base';
@import '../common/style/highlight';
.van-doc-intro {
padding-top: 20px;
font-family: 'Dosis', 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;

View File

@ -18,7 +18,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-container {
box-sizing: border-box;

View File

@ -21,7 +21,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-content {
position: relative;

View File

@ -116,7 +116,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-header {
width: 100%;

View File

@ -71,7 +71,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-nav {
position: fixed;

View File

@ -40,7 +40,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-search {
width: 200px;

View File

@ -44,7 +44,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-simulator {
position: absolute;

View File

@ -104,5 +104,5 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
</style>

View File

@ -16,13 +16,11 @@ export default {
</script>
<style lang="less">
@import '../common/style/var';
@import '../common/style/base';
body {
min-width: 100vw;
color: #323233;
font-family: 'PingFang SC', Helvetica, Tohoma, Arial, sans-serif;
line-height: 1;
background-color: #f8f8f8;
-webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {

View File

@ -16,7 +16,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.van-doc-demo-block {
&__title {
@ -25,6 +25,7 @@ export default {
color: @van-doc-text-light-blue;
font-weight: normal;
font-size: 14px;
line-height: 16px;
}
&:first-of-type {

View File

@ -51,7 +51,7 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.demo-home {
box-sizing: border-box;
@ -64,6 +64,7 @@ export default {
&__desc {
padding-left: 16px;
font-weight: normal;
line-height: 1;
user-select: none;
}

View File

@ -43,11 +43,11 @@ export default {
</script>
<style lang="less">
@import '../../common/style/index';
@import '../../common/style/var';
.demo-home-nav {
&__title {
margin: 24px 0 12px 16px;
margin: 24px 0 8px 16px;
color: rgba(69, 90, 100, 0.6);
font-size: 14px;
}

View File

@ -70,3 +70,11 @@ export default {
}
};
</script>
<style lang="less">
.demo-address-edit {
.van-doc-demo-block__title {
padding-bottom: 0;
}
}
</style>

View File

@ -94,3 +94,11 @@ export default {
}
};
</script>
<style lang="less">
.demo-address-list {
.van-doc-demo-block__title {
padding-bottom: 0;
}
}
</style>