feat(github-buttons): stars, watch, fork and follow

This commit is contained in:
Julien
2018-09-10 10:14:05 +02:00
parent d9a67287b6
commit 70c39d3371
5 changed files with 431 additions and 5 deletions

View File

@@ -19,6 +19,12 @@
| Awesome cheatsheets for popular programming languages, frameworks and development tools.<br/>
| They include everything you should know in one single file. 👩💻👨💻
the-github-buttons(
repo="awesome-cheatsheets"
user="LeCoupa"
class="c-index__github-buttons"
)
section(
v-for="(category, index) in categories"
:key="category.name"
@@ -43,7 +49,14 @@
************************************************************************* -->
<script>
// PROJECT
import TheGithubButtons from "@/components/TheGithubButtons";
export default {
components: {
TheGithubButtons
},
data() {
return {
// --> STATE <--
@@ -224,11 +237,15 @@ $c: ".c-index";
#{$c}__description {
margin: 0;
margin: 30px 0 40px;
font-size: 22px;
margin: 30px 0;
font-size: 18px;
line-height: 32px;
}
#{$c}__github-buttons {
margin-bottom: 40px;
}
#{$c}__category {
margin-bottom: 40px;
@@ -248,4 +265,16 @@ $c: ".c-index";
}
}
}
@include mq($from: tablet) {
#{$c} {
#{$c}__description {
font-size: 22px;
}
#{$c}__github-buttons {
margin-bottom: 60px;
}
}
}
</style>