Revert "basic darkmode"

This commit is contained in:
Louis Lam 2021-07-13 12:16:11 +08:00 committed by GitHub
parent 6af65b688d
commit fef41b44a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 87 deletions

View file

@ -1,5 +1,5 @@
<template>
<span class="badge rounded-pill" :class="'bg-' + color">{{ text }}</span>
<span class="badge rounded-pill" :class=" 'bg-' + color ">{{ text }}</span>
</template>
<script>
@ -33,10 +33,7 @@ export default {
</script>
<style scoped>
span {
width: 45px;
}
.badge {
color: #0a0a0a;
}
span {
width: 45px;
}
</style>