Former-commit-id: d4092359cd7230f0b6951357d032c25eaef76fbd [formerly d4092359cd7230f0b6951357d032c25eaef76fbd [formerly d4092359cd7230f0b6951357d032c25eaef76fbd [formerly d4092359cd7230f0b6951357d032c25eaef76fbd [formerly 7b709f5f323538e6939eb303eea32c82bbbe7a5e [formerly b96839f20dd4ffb15888b803e12c272016758e2c]]]]] Former-commit-id: 547e615e1595e22d9bb5e7996cccb744d128fe59 Former-commit-id: 8a9b843a78dee90450827ac5ba6c24b99b7d8056 Former-commit-id: 40b9089ff6b54ca7b6f2d5e41e6e4c8b2a80f675 [formerly 2cf9dc04bd48bbb668cec0bcc8c18082f947d6c1] Former-commit-id: ea60f2b4e88d57a1f8822ea17d61d43a8a39a20a Former-commit-id: e6cf4fe547aac1462338068ddd0462bfd49587bb Former-commit-id: b4851f8ed7bc73d5cffc6af08512fbf6b38d1b31 Former-commit-id: 3194dea90eef44d97aa7923cf50d82c2c9c06318 Former-commit-id: 68613f707ac4859e5e34a78ca9bd8d1d7ab41ae3
37 lines
1.4 KiB
Vue
37 lines
1.4 KiB
Vue
<template>
|
|
<div class="d2-badge">
|
|
<p align="center">
|
|
<a><img src="https://img.shields.io/github/release/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/github/forks/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/github/stars/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/github/issues/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/github/issues-closed/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/github/issues-pr/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/github/issues-pr-closed/d2-projects/d2-admin.svg"/></a>
|
|
</p>
|
|
<p align="center">
|
|
<a><img src="https://img.shields.io/npm/v/@d2-admin/ice-scaffold.svg"/></a>
|
|
<a href="https://www.travis-ci.org/d2-projects/d2-admin"><img src="https://www.travis-ci.org/d2-projects/d2-admin.svg?branch=master"/></a>
|
|
<a><img src="https://img.shields.io/github/last-commit/d2-projects/d2-admin.svg"/></a>
|
|
<a><img src="https://img.shields.io/badge/code_style-standard-brightgreen.svg"/></a>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.d2-badge {
|
|
margin-bottom: 20px;
|
|
p {
|
|
margin: 0px;
|
|
margin-bottom: 2px;
|
|
:nth-last-child() {
|
|
margin-bottom: 0px;
|
|
}
|
|
a {
|
|
display: inline-block;
|
|
margin: 0px 2px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|