blinkfox / typora-vue-theme

This is a typora theme inspired by Vue document style. 一个类似于 Vue 文档风格的 Typora Markdown 编辑器主题。
https://theme.typora.io/theme/Vue/
Apache License 2.0
931 stars 180 forks source link

Clean code and fix some grammar #12

Closed suiyun39 closed 5 years ago

suiyun39 commented 5 years ago

I fix some grammar in vue.css.

And. I think we should refactor the project use less or sass or other CSS preprocessor. They can help us reduce code line. Such as:

a:first-child h1,
a:first-child h2,
a:first-child h3,
a:first-child h4,
a:first-child h5,
a:first-child h6 {
    margin-top: 0;
    padding-top: 0;
}

if we use less:

a:first-child{
  h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    padding-top: 0;
  }
}
blinkfox commented 5 years ago

Thank you for your contribution, the project is small and simple, it feels unnecessary.

blinkfox commented 5 years ago

If you have time, help me refactor it.

suiyun39 commented 5 years ago

Sure And I only want to simplify some selector